-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add Helm chart #33
base: main
Are you sure you want to change the base?
Add Helm chart #33
Conversation
mkdir charts && cd charts && helm create appsignal-kubernetes
The chart version matches the Cargo version, so there's no reason to duplicate it in the chart.
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" |
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.
Is this used to make commit?
I can imagine this creates a unverified commit or verification problem for the created commits if we try to make them in the name of a person who initiated the release.
I would recommend doing the same thing we do in the collector and agent:
- Author commits in the name of @AppSignalReleaseBot
- Sign the commits using its signing key
- Then, if possible, add the GitHub actor in the commit message and/or tag.
Here's how it's done in the collector: https://github.com/appsignal/appsignal-collector/blob/1f6959017907f87acb3b4bf64e77a4239f850219/.github/workflows/publish_release.yml#L39-L51
You'll need to have the secrets for this set up, which I can do.
This comment has been minimized.
This comment has been minimized.
3 similar comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This is a message from the daily scheduled checks. |
This patch adds a Helm chart, which is currently a copy of the deployment.yaml.
As per https://helm.sh/docs/chart_template_guide/getting_started/.
[skip changeset]