Skip to content

Commit

Permalink
Fix issue with spinnaker url substitution (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinaybyrisetty authored Feb 11, 2021
1 parent b06f40d commit 6e7188f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/oes/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: oes
version: 3.5.2
version: 3.5.3
appVersion: 3.5.0
description: OES is a non-forked version of OSS spinnaker
icon: https://www.opsmx.com/images/logo.png
Expand Down
2 changes: 1 addition & 1 deletion charts/oes/config/oes-dashboard/dashboard-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ app:
{{- if .Values.dashboard.config.spinnakerLink }}
spinnakerLink: {{ .Values.dashboard.config.spinnakerLink }}
{{- else }}
spinnakerLink: {{ .Values.spinnaker.ingress.protocol }}://{{ .Values.spinnaker.ingress.host }}
spinnakerLink: {{ .Values.global.spinDeck.protocol }}://{{ .Values.global.spinDeck.host }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/oes/config/oes-sapor/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spinnaker:
{{- if .Values.sapor.config.spinnaker.spinExternalGateURL }}
externalBaseUrl: {{ .Values.sapor.config.spinnaker.spinExternalGateURL }}
{{- else }}
externalBaseUrl: {{ .Values.spinnaker.ingressGate.protocol }}://{{ .Values.spinnaker.ingressGate.host }}
externalBaseUrl: {{ .Values.global.spinGate.protocol }}://{{ .Values.global.spinGate.host }}
{{- end }}
ldap:
enabled: {{ .Values.sapor.config.spinnaker.ldap.ldapEnabled }}
Expand Down
4 changes: 2 additions & 2 deletions charts/oes/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ dashboard:
app:
sync:
enabled: true
## By default spinnakerLink is {{ .Values.spinnaker.ingress.protocol }}://{{ .Values.spinnaker.ingress.host }}
## By default spinnakerLink is {{ .Values.global.spinDeck.protocol }}://{{ .Values.global.spinDeck.host }}
## If spinnaker is exposed on Load balancer instead of ingress, set this value to external IP of spinnaker UI
#spinnakerLink: http://spinnaker.domain.com

Expand Down Expand Up @@ -384,7 +384,7 @@ sapor:
##
spinGateURL: http://spin-gate:8084

## By default spinExternalGateURL is {{ .Values.spinnaker.ingressGate.protocol }}://{{ .Values.spinnaker.ingressGate.host}}
## By default spinExternalGateURL is {{ .Values.global.spinGate.protocol }}://{{ .Values.global.spinGate.host }}
## If spinExternalGateURL is an external IP address instead of ingress, Set the external IP address of spin-gate, this is used to redirect to
## the spinnaker pipelines from OES-UI.
## Note: Trailing / is not required
Expand Down

0 comments on commit 6e7188f

Please sign in to comment.