Skip to content

Commit

Permalink
Release Operator v0.0.10 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
jomkz authored Jun 29, 2020
1 parent db536c7 commit d138ca9
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 13 deletions.
4 changes: 2 additions & 2 deletions build/util/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Argo CD v1.5.5
FROM argoproj/argocd@sha256:b83f7dafd3d7c21bbaea15d5ce13e699433d7736f5d441e752033663d4fa6e6c
# Argo CD v1.5.8
FROM argoproj/argocd@sha256:503e17a5065119991ad23710a01f8f57714234be9f25f51328a7d9ac6766712c

USER root

Expand Down
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:0fa4b7709e1e9c9cb9ca064be50618f71ff3eef07e185c631b1227f8e5a57776
image: quay.io/jmckind/argocd-operator@sha256:0ff40a548e30f89b90bbcb5ed4933d177835a4683545b78afa2133e8b1c457a6
command:
- argocd-operator
imagePullPolicy: Always
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/argocd.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Name | Default | Description
[**StatusBadgeEnabled**](#status-badge-enabled) | `true` | Enable application status badge feature.
[**TLS**](#tls-options) | [Object] | TLS configuration options.
[**UsersAnonymousEnabled**](#users-anonymous-enabled) | `true` | Enable anonymous user access.
[**Version**](#version) | v1.5.5 (SHA) | The tag to use with the container image for all Argo CD components.
[**Version**](#version) | v1.5.8 (SHA) | The tag to use with the container image for all Argo CD components.

## Application Instance Label Key

Expand Down Expand Up @@ -916,5 +916,5 @@ metadata:
labels:
example: version
spec:
version: v1.5.4
version: v1.5.8
```
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.9 (SHA) | The tag to use with the container image for the export Job.
[**Version**](#version) | v0.0.10 (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.9
version: v0.0.10
```
4 changes: 2 additions & 2 deletions pkg/common/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const (
ArgoCDDefaultArgoImage = "argoproj/argocd"

// ArgoCDDefaultArgoVersion is the Argo CD container image digest to use when version not specified.
ArgoCDDefaultArgoVersion = "sha256:b83f7dafd3d7c21bbaea15d5ce13e699433d7736f5d441e752033663d4fa6e6c" // v1.5.5
ArgoCDDefaultArgoVersion = "sha256:503e17a5065119991ad23710a01f8f57714234be9f25f51328a7d9ac6766712c" // v1.5.8

// ArgoCDDefaultBackupKeyLength is the length of the generated default backup key.
ArgoCDDefaultBackupKeyLength = 32
Expand Down 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:15fcd9f7faf30dba0eef849b8d9a3c8743c8a0de6cc8d0e1c86de29fea399e07" // v0.0.9
ArgoCDDefaultExportJobVersion = "sha256:0215a5e6540f2eb3bdd286101a7a5c1311d84bcf1f2750e6a1e4deeb0c406460" // v0.0.10

// ArgoCDDefaultExportLocalCapicity is the default capacity to use for local export.
ArgoCDDefaultExportLocalCapicity = "2Gi"
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/argocd-tests/02-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ status:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: example-argocd
name: example-argocd-server
---
apiVersion: extensions/v1beta1
kind: Ingress
Expand Down
6 changes: 4 additions & 2 deletions tests/e2e/argocd-tests/02-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ metadata:
spec:
server:
grpc:
ingress: true
ingress: true
ingress:
enabled: true
ingress:
enabled: true
insecure: true
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.9"
Version = "0.0.10"
)

0 comments on commit d138ca9

Please sign in to comment.