Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wikibase-cloud-clusterissuers v0.2.0: add local ClusterIssuer #179

Merged
merged 1 commit into from
Dec 10, 2024
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.1.0
version: 0.2.0
maintainers:
- name: WBstack
url: https://github.com/wbstack
9 changes: 9 additions & 0 deletions charts/wikibase-cloud-clusterissuers/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# wbstack-cloud-clusterisssuers

This chart deploys cert-manager `ClusterIssuer` resources, which represent CAs that are able to generate signed certificates by honoring certificate signing requests. The `ClusterIssuer` resource is almost identical to the `Issuer` resource, however is non-namespaced so it can be used to issue `Certificates` across all namespaces.

https://cert-manager.io/docs/configuration/

## changelog
- 0.2.0: Add self-signed cluster issuer for local environment
- 0.1.0: Initial tag
7 changes: 7 additions & 0 deletions charts/wikibase-cloud-clusterissuers/templates/local.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: selfsigned-cluster-issuer
namespace: cert-manager
spec:
selfSigned: {}
Loading