Create google.yml - #15
Conversation
created google-docker.yml
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2afaaf9bfb
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| # Set up kustomize | ||
| - name: 'Set up Kustomize' | ||
| run: |- | ||
| curl -sfLo kustomize https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.4.3/kustomize_v5.4.3_linux_amd64.tar.gz |
There was a problem hiding this comment.
Extract kustomize tarball before executing it
This step downloads kustomize_v5.4.3_linux_amd64.tar.gz directly into a file named kustomize and then marks it executable. Because the URL points to a compressed tarball, ./kustomize edit in the later deploy step will fail at runtime (the file is not an executable binary) whenever the workflow runs. The workflow needs to extract the tarball (e.g., via tar -xzf) before attempting to execute kustomize.
Useful? React with 👍 / 👎.
created google-docker.yml