-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'PDI-1357' into 'master'
PDI-1357: Update _ingress.tpl to Use spec.ingressClassName Instead of Deprecated Annotations Closes PDI-1357 See merge request devops-program/helm-charts!418
- Loading branch information
Showing
3 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
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
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,26 @@ | ||
# This test is meant to show a simple example of how to format | ||
# a test file for the test_helm_template.py script. | ||
|
||
### SECTION:PARAMETERS ### | ||
# The PARAMETERS section is required. | ||
# If the releaseName parameter is not set, then a default release name | ||
# matching the name of the file (without the extension) will be used. | ||
releaseName: ingress-classname | ||
# Set skipTest to true to make the script skip this test | ||
skipTest: false | ||
### SECTION:VALUES ### | ||
global: | ||
ingress: | ||
enabled: true | ||
spec: | ||
ingressClassName: nginx-public | ||
pingfederate-admin: | ||
enabled: true | ||
### SECTION:EXPECTED ### | ||
# Validate that the ingress class name is included in generated yaml | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: ingress-classname-pingfederate-admin | ||
spec: | ||
ingressClassName: nginx-public |