Skip to content

Commit

Permalink
add local cluster issuer & README (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
deer-wmde authored Dec 10, 2024
1 parent de36ee1 commit 43ffdd3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
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: {}

0 comments on commit 43ffdd3

Please sign in to comment.