-
Notifications
You must be signed in to change notification settings - Fork 67
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
chore(es-proxy-scratch): Updated code to support scratch image #2687
base: master
Are you sure you want to change the base?
Conversation
Please find the detailed integration test report here Please find the ci env pod logs here |
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.
The rest looks good to me. Just one formatting change.
gen3/bin/kube-setup-secrets.sh
Outdated
echo ${i} >> "$credsFile" | ||
done | ||
g3kubectl delete secret aws-es-proxy || true | ||
g3kubectl create secret generic aws-es-proxy "--from-file=credentials=${credsFile}" --from-literal=aws_access_key_id=$(cat creds.json| jq -r .es.aws_access_key_id) --from-literal=aws_secret_access_key=$(cat creds.json| jq -r .es.aws_secret_access_key) |
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.
This could be a little more readable
g3kubectl create secret generic aws-es-proxy \
"--from-file=credentials=${credsFile}" \
--from-literal=aws_access_key_id=$(cat creds.json | jq -r .es.aws_access_key_id) \
--from-literal=aws_secret_access_key=$(cat creds.json | jq -r .es.aws_secret_access_key)
Please find the detailed integration test report here Please find the ci env pod logs here |
New Features
Updated code to support scratch es proxy images
Breaking Changes
Bug Fixes
Improvements
Dependency updates
Deployment changes