Skip to content

Commit 491477e

Browse files
authored
change conditional blocks (#194)
1 parent 9522d70 commit 491477e

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

charts/wikibase-cloud-clusterissuers/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: wikibase-cloud-clusterissuers
5-
version: 0.3.0
5+
version: 0.3.1
66
maintainers:
77
- name: WBstack
88
url: https://github.com/wbstack

charts/wikibase-cloud-clusterissuers/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This chart deploys cert-manager `ClusterIssuer` resources, which represent CAs t
55
https://cert-manager.io/docs/configuration/
66

77
## changelog
8+
- 0.3.1: Fix previous conditions, since there was a confusion about Let's Encrypts staging & produciton and our staging environments
89
- 0.3.0: Wrap resource definitions in conditional blocks, to ensure only relevant resources get deployed to the right environment
910
- 0.2.1: Add self-signed CA bootstrapping (docs: https://cert-manager.io/docs/configuration/selfsigned/#bootstrapping-ca-issuers)
1011
- 0.2.0: Add self-signed cluster issuer for local environment

charts/wikibase-cloud-clusterissuers/templates/production.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if eq .Values.environment "production" }}
1+
{{- if ne .Values.environment "local" }}
22
apiVersion: cert-manager.io/v1
33
kind: ClusterIssuer
44
metadata:

charts/wikibase-cloud-clusterissuers/templates/staging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{- if eq .Values.environment "staging" }}
1+
{{- if ne .Values.environment "local" }}
22
apiVersion: cert-manager.io/v1
33
kind: ClusterIssuer
44
metadata:

0 commit comments

Comments
 (0)