-
Notifications
You must be signed in to change notification settings - Fork 339
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
ci: docker automation #265
Conversation
6e50681
to
4d92c89
Compare
4d92c89
to
11fb466
Compare
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.
At the moment, release
job does everything at once (all components, all steps).
What will happen if one of the steps fails (e.g. deploy of *.tar.gz
to bintray.io
) ? Will the second run of release
work ?
@@ -0,0 +1,12 @@ | |||
FROM alpine:3.10 |
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.
Docker image should run under a non-root
account, e.g. nobody
(65534:65534
) on alpine
@@ -0,0 +1,9 @@ | |||
FROM alpine:3.10 |
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.
Docker image should run under a non-root
account, e.g. nobody
(65534:65534
) on alpine
@@ -0,0 +1,9 @@ | |||
FROM alpine:3.10 |
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.
Docker image should run under a non-root
account, e.g. nobody
(65534:65534
) on alpine
@@ -0,0 +1,10 @@ | |||
# using Envoy's base to inherit the Envoy binary |
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.
Docker image should run under a non-root
account, e.g. nobody
(65534:65534
) on alpine
docker_login | ||
|
||
for component in "${KUMA_COMPONENTS[@]}"; do | ||
msg "Pushing kuma-cp..." |
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.
Can we change the message to Pushing $component ...
?
Summary