-
Notifications
You must be signed in to change notification settings - Fork 179
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Checkout kyma for kyma integration job #86
Checkout kyma for kyma integration job #86
Conversation
ea89526
to
d2268d7
Compare
prow/config.yaml
Outdated
entrypoint: "gcr.io/k8s-prow/entrypoint:v20181019-08e9d55c9" | ||
sidecar: "gcr.io/k8s-prow/sidecar:v20181019-08e9d55c9" | ||
gcs_configuration: | ||
bucket: "prow-mst" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bucket name
82bae9e
to
33c98d2
Compare
development/create-gcp-secrets.sh
Outdated
@@ -59,5 +59,5 @@ do | |||
ENCRYPTED_FILE="${FILE}.${EXTENSTION}" | |||
gsutil cp gs://${BUCKET}/${ENCRYPTED_FILE} ${TMP_DIR}/${FILE} | |||
gcloud kms decrypt --location "${LOCATION}" --keyring "${KEYRING}" --key "${KEY}" --ciphertext-file "${TMP_DIR}/${FILE}" --plaintext-file "${TMP_DIR}/${FILE}" | |||
kubectl create secret generic "${FILE}" --from-file="${TMP_DIR}/${FILE}" | |||
kubectl create secret generic "${FILE}" --from-file="service-account.json"="${TMP_DIR}/${FILE}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should better use "create or replace" approach here - allows for updates of existing secrets.
My proposal goes like this:
kubectl create secret generic secret3 --from-file="aaa.txt"="secret1.json" --dry-run -o yaml | kubectl apply -f -
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prepared issue for that: #88
33c98d2
to
e4438fe
Compare
@strekm: Updated the
In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Description
Changes proposed in this pull request:
Related issue(s)
See #20