-
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.
* Issue #78 - Adding affinity support to workload * Issue #79 - Adding pingdatagovernancepap * Adding release notes for release 0.4.2 * Issue #79 - setting EXTERNAL_HOST to proper hostname if ingress is being used * final clenaup * removed future license secret change * Add additional comment to affinity example * Remove empty line due to lint error * Trying to resolve ct lint error * Fix lint error
- Loading branch information
Showing
11 changed files
with
134 additions
and
33 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
18 changes: 18 additions & 0 deletions
18
charts/ping-devops/templates/pingdatagovernancepap/configmap.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,18 @@ | ||
{{- include "pinglib.configmap" (list . "pingdatagovernancepap") -}} | ||
|
||
|
||
|
||
{{- define "pingdatagovernancepap.configmap" -}} | ||
{{- $top := index . 0 -}} | ||
{{- $v := index . 1 -}} | ||
data: | ||
{{- if $v.ingress.enabled }} | ||
PING_EXTERNAL_BASE_URL: {{ printf "%s:%s" (include "pinglib.ingress.hostname" (list $top $v (index $v.ingress.hosts 0).host)) (toString $v.services.https.ingressPort) }} | ||
{{- else }} | ||
PING_EXTERNAL_BASE_URL: localhost:8443 | ||
{{- end -}} | ||
{{- end -}} | ||
|
||
|
||
{{- define "pingdatagovernancepap.configmap" -}} | ||
{{- end -}} |
8 changes: 8 additions & 0 deletions
8
charts/ping-devops/templates/pingdatagovernancepap/ingress.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,8 @@ | ||
{{- if (merge (index .Values "pingdatagovernancepap") .Values.global).ingress.enabled }} | ||
{{- include "pinglib.ingress" (list . "pingdatagovernancepap") -}} | ||
{{- end -}} | ||
|
||
|
||
|
||
{{- define "pingdatagovernancepap.ingress" -}} | ||
{{- end -}} |
6 changes: 6 additions & 0 deletions
6
charts/ping-devops/templates/pingdatagovernancepap/service.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,6 @@ | ||
{{- include "pinglib.service" (list . "pingdatagovernancepap") -}} | ||
|
||
|
||
|
||
{{- define "pingdatagovernancepap.service" -}} | ||
{{- end -}} |
6 changes: 6 additions & 0 deletions
6
charts/ping-devops/templates/pingdatagovernancepap/workload.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,6 @@ | ||
{{- include "pinglib.workload" (list . "pingdatagovernancepap") -}} | ||
|
||
|
||
|
||
{{- define "pingdatagovernancepap.workload" -}} | ||
{{- end -}} |
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
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