Skip to content

Commit

Permalink
wikibase-cloud-clusterissuers v0.2.1 (#184)
Browse files Browse the repository at this point in the history
* use self-signed ca bootstrapping

* version bump
  • Loading branch information
deer-wmde authored Dec 19, 2024
1 parent 7acaf39 commit d20ff7f
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 2 deletions.
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.2.0
version: 0.2.1
maintainers:
- name: WBstack
url: https://github.com/wbstack
3 changes: 2 additions & 1 deletion charts/wikibase-cloud-clusterissuers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ This chart deploys cert-manager `ClusterIssuer` resources, which represent CAs t
https://cert-manager.io/docs/configuration/

## changelog
- 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
- 0.1.0: Initial tag
- 0.1.0: Initial tag
26 changes: 26 additions & 0 deletions charts/wikibase-cloud-clusterissuers/templates/local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,29 @@ metadata:
namespace: cert-manager
spec:
selfSigned: {}
---
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
name: wikibase-local-root-ca
namespace: cert-manager
spec:
isCA: true
commonName: wikibase-local-root-ca
secretName: wikibase-local-root-secret
privateKey:
algorithm: ECDSA
size: 256
issuerRef:
name: selfsigned-cluster-issuer
kind: ClusterIssuer
group: cert-manager.io
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: wikibase-local-issuer
namespace: cert-manager
spec:
ca:
secretName: wikibase-local-root-secret

0 comments on commit d20ff7f

Please sign in to comment.