This message was deleted.
# general
s
This message was deleted.
i
I plan to do the same thing, but our ci process is changing/committing code in the build/test phase: - build/tag images with commit sha - test (assume success here) - git flow start release xxx - bump version numbers in manifests -
pulumi config set version xxx
- retag gcr images from sha with xxx - git flow finish release xxx (pushes code to github) Then we have a different ci job running on merges to
master
-
pulumi up -y
or at least that is the plan at this point.
I’m open to other ideas, but in this case we are fully reproducible/redeployable with the version of code committed
o
GitLab CI/CD is designed around immutable/idempotent pipelines (for better or worse), so the runner has a read-only token for pulling
i
We focused on auto-release and did it with circleci, git-flow, and some custom scripts. All this is definitely dependent on choices you make for your toolchain.