-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
69 additions
and
19 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
charts/cert-manager-issuers/tests/__snapshot__/awspcaclusterissuers_test.yaml.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
should create a AWSPCAIssuer: | ||
1: | | ||
apiVersion: awspca.cert-manager.io/v1beta1 | ||
kind: AWSPCAClusterIssuer | ||
metadata: | ||
labels: | ||
app.kubernetes.io/app: cert-manager-issuers | ||
app.kubernetes.io/instance: RELEASE-NAME | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/version: "1" | ||
helm.sh/chart: cert-manager-issuers-0.2.6 | ||
name: example | ||
spec: | ||
arn: <some-pca-arn> |
18 changes: 18 additions & 0 deletions
18
charts/cert-manager-issuers/tests/__snapshot__/awspcaissuers_test.yaml.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
should create a AWSPCAClusterIssuer: | ||
1: | | ||
apiVersion: awspca.cert-manager.io/v1beta1 | ||
kind: AWSPCAIssuer | ||
metadata: | ||
labels: | ||
app.kubernetes.io/app: cert-manager-issuers | ||
app.kubernetes.io/instance: RELEASE-NAME | ||
app.kubernetes.io/managed-by: Helm | ||
app.kubernetes.io/version: "1" | ||
helm.sh/chart: cert-manager-issuers-0.2.6 | ||
name: example | ||
spec: | ||
arn: <some-pca-arn> | ||
region: eu-west-1 | ||
secretRef: | ||
name: example | ||
namespace: default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
charts/cert-manager-issuers/tests/awspcaclusterissuers_test.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
suite: AWSPCAClusterIssuer tests | ||
templates: | ||
- awspcaclusterissuers.yaml | ||
tests: | ||
- it: should create a AWSPCAIssuer | ||
values: | ||
- ../examples/awspcaissuer.yaml | ||
asserts: | ||
- matchSnapshot: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
suite: AWSPCAIssuer tests | ||
templates: | ||
- awspcaissuers.yaml | ||
tests: | ||
- it: should create a AWSPCAClusterIssuer | ||
values: | ||
- ../examples/awspcaclusterissuer.yaml | ||
asserts: | ||
- matchSnapshot: {} |