-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 0.7.0 for beta release (#670)
* Fix a couple shellcheck errors * Add timeout to k8s demo curling to prevent infinite loop * Clarify keychain_provider README * Update CHANGELOG / VERSION for beta release
- Loading branch information
Showing
5 changed files
with
50 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.6.4 | ||
0.7.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#!/bin/bash -e | ||
|
||
CURRENT_DIR=$(dirname $0) | ||
CURRENT_DIR=$(dirname "$0") | ||
|
||
echo "Stopping deployment..." | ||
./stop_deployment || true | ||
|
||
echo "Deploying..." | ||
kubectl apply -f $CURRENT_DIR/deployment.yaml | ||
kubectl apply -f "$CURRENT_DIR/deployment.yaml" | ||
|
||
echo "Deployment done!" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
# keychain_provider tests | ||
|
||
Note: This directory does not contain `start`, so it will not be run by the wrapper script `./bin/test`. | ||
The OS X Keychain Provider is meant for interactive use by a user, which | ||
is why this test is "manual". | ||
|
||
The reason is that (keychain_provider_test.go)[keychain_provider_test.go] will open a confirmation dialog, which does not play well with automation. | ||
|
||
The OS X Keychain Provider is meant for interactive use by a user; this dialog is a security feature of the OS. | ||
The (keychain_provider_test.go)[keychain_provider_test.go] will open a | ||
confirmation dialog during this test, and you'll need to click "Allow" | ||
|
||
To run the test locally if you are working on a Mac, just run | ||
|
||
``` | ||
./start | ||
./test | ||
``` | ||
|
||
from this directory. The `start` script prepares your local | ||
environment by adding a secret to your OSX Keyring. Note that you may be | ||
prompted to grant access to your OSX Keyring in order for this test to run | ||
properly. To clean up after running the test, you can run `./stop`. | ||
environment by adding a secret to your OSX Keyring. To clean up after running | ||
the test, you can run `./stop`. |