Skip to content

Commit 76672ce

Browse files
authored
chore: add support for Issuer (#1563)
This pull request adds support for the `Issuer` resource to the `cert-manager` library similar to the `ClusterIssuer` resource. ref: https://cert-manager.io/docs/concepts/issuer/
1 parent 54bae5b commit 76672ce

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

cert-manager/default_clusterissuers.libsonnet

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
},
1111
},
1212

13+
issuer:: self.clusterIssuer {
14+
new(name): {
15+
apiVersion: 'cert-manager.io/v1',
16+
kind: 'Issuer',
17+
metadata: {
18+
name: name,
19+
},
20+
},
21+
},
22+
1323
clusterIssuer:: {
1424
new(name): {
1525
apiVersion: 'cert-manager.io/v1',

0 commit comments

Comments
 (0)