Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/wikibase-cloud-clusterissuers/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Kubernetes
name: wikibase-cloud-clusterissuers
version: 0.3.0
version: 0.3.1
maintainers:
- name: WBstack
url: https://github.com/wbstack
1 change: 1 addition & 0 deletions charts/wikibase-cloud-clusterissuers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ This chart deploys cert-manager `ClusterIssuer` resources, which represent CAs t
https://cert-manager.io/docs/configuration/

## changelog
- 0.3.1: Fix previous conditions, since there was a confusion about Let's Encrypts staging & produciton and our staging environments
- 0.3.0: Wrap resource definitions in conditional blocks, to ensure only relevant resources get deployed to the right environment
- 0.2.1: Add self-signed CA bootstrapping (docs: https://cert-manager.io/docs/configuration/selfsigned/#bootstrapping-ca-issuers)
- 0.2.0: Add self-signed cluster issuer for local environment
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if eq .Values.environment "production" }}
{{- if ne .Values.environment "local" }}
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if eq .Values.environment "staging" }}
{{- if ne .Values.environment "local" }}
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
Expand Down
Loading