Skip to content

Commit

Permalink
Release Operator v0.0.9 (#88)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jomkz authored May 27, 2020
1 parent d78f7bb commit 3b021a1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: argocd-operator
containers:
- name: argocd-operator
image: quay.io/jmckind/argocd-operator@sha256:d1385d23a60205636bc3789b0127d6159d33d7a7521dd07d6b679b7f734ee4b3
image: quay.io/jmckind/argocd-operator@sha256:0fa4b7709e1e9c9cb9ca064be50618f71ff3eef07e185c631b1227f8e5a57776
command:
- argocd-operator
imagePullPolicy: Always
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/argocdexport.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Name | Default | Description
[**Image**](#image) | `quay.io/jmckind/argocd-operator-util` | The container image for the export Job.
[**Schedule**](#schedule) | [Empty] | Export schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.
[**Storage**](#storage-options) | [Object] | The storage configuration options.
[**Version**](#version) | v0.0.8 (SHA) | The tag to use with the container image for the export Job.
[**Version**](#version) | v0.0.9 (SHA) | The tag to use with the container image for the export Job.

## Argocd

Expand Down Expand Up @@ -116,5 +116,5 @@ metadata:
labels:
example: version
spec:
version: v0.0.8
version: v0.0.9
```
2 changes: 1 addition & 1 deletion pkg/common/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const (
ArgoCDDefaultExportJobImage = "quay.io/jmckind/argocd-operator-util"

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

// ArgoCDDefaultExportLocalCapicity is the default capacity to use for local export.
ArgoCDDefaultExportLocalCapicity = "2Gi"
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ package version

var (
// Version is the ArgoCD Operator version.
Version = "0.0.8"
Version = "0.0.9"
)

0 comments on commit 3b021a1

Please sign in to comment.