-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added CI folder gateway-otk * charts/portal added additional config options for dispatcher, charts/gateway settable cluster-wide-properties * charts/gateway updated values.yaml * US725489: initial changes to use mysql 8.0.22 * Portal + Gateway documentation updates * bumping versions * cleaning up the configuration for mysql Removing comments and config params to keep the configuration minimal * incorporated review comments updated image tags corrected configuration for mysql * incorporating review comment Making root & replication passwords settable. * Add troubleshooting for helm upgrade failure. * Update image tags * Removing options of old MySQL chart * making it consistent with other components' settings * correcting formatting * incorporating review feedback Co-authored-by: Gary Vermeulen <[email protected]> Co-authored-by: Gazza7205 <[email protected]> Co-authored-by: Mohsin Khan <[email protected]> Co-authored-by: Ashwin Kumar <[email protected]> Co-authored-by: as666499 <[email protected]>
- Loading branch information
1 parent
38c6b28
commit 5dd4472
Showing
31 changed files
with
594 additions
and
175 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,3 @@ | ||
license: | ||
value: SSG_LICENSE | ||
accept: true |
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,14 @@ | ||
{{ if .Values.serviceAccount.create }} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "gateway.serviceAccountName" . }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
app: {{ template "gateway.name" . }} | ||
chart: {{ template "gateway.chart" . }} | ||
release: {{ .Release.Name }} | ||
heritage: {{ .Release.Service }} | ||
secrets: | ||
- name: {{ include "gateway.fullname" . }} | ||
{{ 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
license: | ||
value: $SSG_LICENSE | ||
value: SSG_LICENSE | ||
accept: true |
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,57 @@ | ||
{{ if .Values.config.cwp.enabled }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ template "gateway.fullname" . }}-cwp-configmap | ||
labels: | ||
app: {{ template "gateway.name" . }} | ||
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}" | ||
release: {{ .Release.Name }} | ||
heritage: {{ .Release.Service }} | ||
{{- $hexArr := splitList " " (include "gateway.cwp.hex" .) }} | ||
data: | ||
cwp.bundle: | | ||
<l7:Bundle xmlns:l7="http://ns.l7tech.com/2010/04/gateway-management"> | ||
<l7:References> | ||
{{ range $i, $v := $hexArr }} | ||
{{ if ne $i 0 }} | ||
{{ with index $.Values.config.cwp.properties (sub $i 1 )}} | ||
<l7:Item> | ||
<l7:Name>{{ .name }}</l7:Name> | ||
<l7:Id>{{ $v }}</l7:Id> | ||
<l7:Type>CLUSTER_PROPERTY</l7:Type> | ||
<l7:Resource> | ||
<l7:ClusterProperty id="{{ $v }}"> | ||
<l7:Name>{{ .name }}</l7:Name> | ||
{{ if contains "\\n" (.value | quote)}} | ||
<l7:Value>{{ .value | trim | indent 4 | trim }}</l7:Value> | ||
{{ else }} | ||
<l7:Value>{{ .value }}</l7:Value> | ||
{{ end }} | ||
</l7:ClusterProperty> | ||
</l7:Resource> | ||
</l7:Item> | ||
{{ end }} | ||
{{ end }} | ||
{{ end }} | ||
</l7:References> | ||
<l7:Mappings> | ||
{{ range $i, $v := $hexArr }} | ||
{{ if ne $i 0 }} | ||
{{ with index $.Values.config.cwp.properties (sub $i 1 ) }} | ||
<l7:Mapping action="NewOrUpdate" srcId="{{ $v }}" type="CLUSTER_PROPERTY"> | ||
<l7:Properties> | ||
<l7:Property key="MapBy"> | ||
<l7:StringValue>name</l7:StringValue> | ||
</l7:Property> | ||
<l7:Property key="MapTo"> | ||
<l7:StringValue>{{ .name }}</l7:StringValue> | ||
</l7:Property> | ||
</l7:Properties> | ||
</l7:Mapping> | ||
{{ end }} | ||
{{ end }} | ||
{{ end }} | ||
</l7:Mappings> | ||
</l7:Bundle> | ||
{{ 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{{ if .Values.serviceAccount.create }} | ||
apiVersion: v1 | ||
kind: ServiceAccount | ||
metadata: | ||
name: {{ include "gateway.serviceAccountName" . }} | ||
namespace: {{ .Release.Namespace }} | ||
labels: | ||
app: {{ template "gateway.name" . }} | ||
chart: {{ template "gateway.chart" . }} | ||
release: {{ .Release.Name }} | ||
heritage: {{ .Release.Service }} | ||
secrets: | ||
- name: {{ include "gateway.fullname" . }} | ||
{{ end }} |
Oops, something went wrong.