- Checkout your fork and make sure it's up-to-date with the
upstream$ git remote -v origin git@github.com:<your account>/trivy-operator.git (fetch) origin git@github.com:<your account>/trivy-operator.git (push) upstream git@github.com:aquasecurity/trivy-operator.git (fetch) upstream git@github.com:aquasecurity/trivy-operator.git (push)
git pull -r git fetch upstream git merge upstream/main git push - Prepare release by creating the PR with the following changes
- In
deploy/helm/Chart.yaml- Update the
versionproperty - Update the
appVersionproperty
- Update the
- Update the
app.kubernetes.io/versionlabels in the following files: - Update static resources from Helm chart by running the make target:
make manifests - In
mkdocs.yml- Update the
extra.var.prev_git_tagproperty - Update the
extra.var.chart_versionproperty
- Update the
- In
- Review and merge the PR (make sure all tests are passing)
- Update your fork again
git pull -r git fetch upstream git merge upstream/main git push - Create an annotated git tag and push it to the
upstream. This will trigger the.github/workflows/release.yamlworkflowgit tag -v0.13.1 -m 'Release v0.13.1' git push upstream v0.13.1 - Verify that the
releaseworkflow has built and published the following artifacts- Trivy-operator container images published to DockerHub
docker.io/aquasec/trivy-operator:0.13.1 - Trivy-operator container images published to Amazon ECR Public Gallery
public.ecr.aws/aquasecurity/trivy-operator:0.13.1 - Trivy-operator container images published to GitHub Container Registry
ghcr.io/aquasecurity/trivy-operator:0.13.1
- Trivy-operator container images published to DockerHub
- Publish the Helm chart by manually triggering the
.github/workflows/publish-helm-chart.yamlworkflow - Publish docs on https://aquasecurity.github.io/trivy-operator/ by manually triggering the
.github/workflows/publish-docs.yamlworkflow - Submit trivy-operator Operator to OperatorHub and ArtifactHUB by opening the PR to the https://github.com/k8s-operatorhub/community-operators repository.