Skip to content

Commit 3b021a1

Browse files
authored
Release Operator v0.0.9 (#88)
* Use util image v0.0.9 * Increment the application version to 0.0.9 * Update the image version * Use SHA digest for operator v0.0.9
1 parent d78f7bb commit 3b021a1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

deploy/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
serviceAccountName: argocd-operator
1616
containers:
1717
- name: argocd-operator
18-
image: quay.io/jmckind/argocd-operator@sha256:d1385d23a60205636bc3789b0127d6159d33d7a7521dd07d6b679b7f734ee4b3
18+
image: quay.io/jmckind/argocd-operator@sha256:0fa4b7709e1e9c9cb9ca064be50618f71ff3eef07e185c631b1227f8e5a57776
1919
command:
2020
- argocd-operator
2121
imagePullPolicy: Always

docs/reference/argocdexport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Name | Default | Description
1313
[**Image**](#image) | `quay.io/jmckind/argocd-operator-util` | The container image for the export Job.
1414
[**Schedule**](#schedule) | [Empty] | Export schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
1515
[**Storage**](#storage-options) | [Object] | The storage configuration options.
16-
[**Version**](#version) | v0.0.8 (SHA) | The tag to use with the container image for the export Job.
16+
[**Version**](#version) | v0.0.9 (SHA) | The tag to use with the container image for the export Job.
1717

1818
## Argocd
1919

@@ -116,5 +116,5 @@ metadata:
116116
labels:
117117
example: version
118118
spec:
119-
version: v0.0.8
119+
version: v0.0.9
120120
```

pkg/common/defaults.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ const (
8686
ArgoCDDefaultExportJobImage = "quay.io/jmckind/argocd-operator-util"
8787

8888
// ArgoCDDefaultExportJobVersion is the export job container image tag to use when not specified.
89-
ArgoCDDefaultExportJobVersion = "sha256:dad24d8a2b09cbe3c6c78f2d2cdf344a88b5735a3db5a6aec84dc8b57b2cbdd0" // v0.0.8
89+
ArgoCDDefaultExportJobVersion = "sha256:15fcd9f7faf30dba0eef849b8d9a3c8743c8a0de6cc8d0e1c86de29fea399e07" // v0.0.9
9090

9191
// ArgoCDDefaultExportLocalCapicity is the default capacity to use for local export.
9292
ArgoCDDefaultExportLocalCapicity = "2Gi"

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ package version
1616

1717
var (
1818
// Version is the ArgoCD Operator version.
19-
Version = "0.0.8"
19+
Version = "0.0.9"
2020
)

0 commit comments

Comments
 (0)