Skip to content

Commit 68dcb68

Browse files
authored
release: prepare v0.18.5 (#1843)
* release: prepare v0.18.5 Signed-off-by: chenk <hen.keinan@gmail.com> * release: prepare v0.18.5 Signed-off-by: chenk <hen.keinan@gmail.com> --------- Signed-off-by: chenk <hen.keinan@gmail.com>
1 parent 896dc38 commit 68dcb68

23 files changed

+49
-49
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ kubectl apply -f https://github.com/operator-framework/operator-lifecycle-manage
351351
or
352352

353353
```
354-
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.20.5/install.sh -o install.sh
354+
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/v0.20.6/install.sh -o install.sh
355355
chmod +x install.sh
356356
./install.sh v0.20.0
357357
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Install the Helm Chart:
6666
helm install trivy-operator aqua/trivy-operator \
6767
--namespace trivy-system \
6868
--create-namespace \
69-
--version 0.20.5
69+
--version 0.20.6
7070
```
7171

7272
This will install the Trivy Helm Chart into the `trivy-system` namespace and start triggering the scans.

RELEASING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@
4646
5. Create an annotated git tag and push it to the `upstream`. This will trigger the [`.github/workflows/release.yaml`] workflow
4747

4848
```sh
49-
git tag -v0.18.4 -m 'Release v0.18.4'
50-
git push upstream v0.18.4
49+
git tag -v0.18.5 -m 'Release v0.18.5'
50+
git push upstream v0.18.5
5151
```
5252

5353
6. Verify that the `release` workflow has built and published the following artifacts
5454
1. Trivy-operator container images published to DockerHub
55-
`docker.io/aquasec/trivy-operator:0.18.4`
55+
`docker.io/aquasec/trivy-operator:0.18.5`
5656
2. Trivy-operator container images published to Amazon ECR Public Gallery
57-
`public.ecr.aws/aquasecurity/trivy-operator:0.18.4`
57+
`public.ecr.aws/aquasecurity/trivy-operator:0.18.5`
5858
3. Trivy-operator container images published to GitHub Container Registry
59-
`ghcr.io/aquasecurity/trivy-operator:0.18.4`
59+
`ghcr.io/aquasecurity/trivy-operator:0.18.5`
6060

6161
7. Submit trivy-operator Operator to OperatorHub and ArtifactHUB by opening the PR to the <https://github.com/k8s-operatorhub/community-operators> repository.
6262

deploy/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ type: application
66
# This is the chart version. This version number should be incremented each time you make changes
77
# to the chart and its templates, including the app version.
88
# Versions are expected to follow Semantic Versioning (https://semver.org/)
9-
version: 0.20.5
9+
version: 0.20.6
1010

1111
# This is the version number of the application being deployed. This version number should be
1212
# incremented each time you make changes to the application. Versions are not expected to
1313
# follow Semantic Versioning. They should reflect the version the application is using.
14-
appVersion: 0.18.4
14+
appVersion: 0.18.5
1515

1616
# kubeVersion: A SemVer range of compatible Kubernetes versions (optional)
1717

deploy/helm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# trivy-operator
22

3-
![Version: 0.20.5](https://img.shields.io/badge/Version-0.20.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.4](https://img.shields.io/badge/AppVersion-0.18.4-informational?style=flat-square)
3+
![Version: 0.20.6](https://img.shields.io/badge/Version-0.20.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.18.5](https://img.shields.io/badge/AppVersion-0.18.5-informational?style=flat-square)
44

55
Keeps security report resources updated
66

deploy/helm/templates/specs/cis-1.23.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
app.kubernetes.io/name: trivy-operator
77
app.kubernetes.io/instance: trivy-operator
8-
app.kubernetes.io/version: 0.18.4
8+
app.kubernetes.io/version: 0.18.5
99
app.kubernetes.io/managed-by: kubectl
1010
spec:
1111
cron: {{ .Values.compliance.cron | quote}}

deploy/helm/templates/specs/nsa-1.0.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
app.kubernetes.io/name: trivy-operator
77
app.kubernetes.io/instance: trivy-operator
8-
app.kubernetes.io/version: "0.18.4"
8+
app.kubernetes.io/version: "0.18.5"
99
app.kubernetes.io/managed-by: kubectl
1010
spec:
1111
cron: {{ .Values.compliance.cron | quote }}

deploy/helm/templates/specs/pss-baseline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
app.kubernetes.io/name: trivy-operator
77
app.kubernetes.io/instance: trivy-operator
8-
app.kubernetes.io/version: 0.18.4
8+
app.kubernetes.io/version: 0.18.5
99
app.kubernetes.io/managed-by: kubectl
1010
spec:
1111
cron: {{ .Values.compliance.cron | quote }}

deploy/helm/templates/specs/pss-restricted.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
labels:
66
app.kubernetes.io/name: trivy-operator
77
app.kubernetes.io/instance: trivy-operator
8-
app.kubernetes.io/version: 0.18.4
8+
app.kubernetes.io/version: 0.18.5
99
app.kubernetes.io/managed-by: kubectl
1010
spec:
1111
cron: {{ .Values.compliance.cron | quote }}

deploy/static/namespace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ metadata:
66
labels:
77
app.kubernetes.io/name: trivy-operator
88
app.kubernetes.io/instance: trivy-operator
9-
app.kubernetes.io/version: "0.18.4"
9+
app.kubernetes.io/version: "0.18.5"
1010
app.kubernetes.io/managed-by: kubectl

0 commit comments

Comments
 (0)