Skip to content

Commit

Permalink
Fix wrong iFrame URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Wolfgang Kulhanek authored and Wolfgang Kulhanek committed Dec 12, 2023
1 parent e355c44 commit 7a23870
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/showroom-single-pod/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.14
version: 0.0.15

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
6 changes: 3 additions & 3 deletions charts/showroom-single-pod/files/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<body>
<div class="content">
<div class="split left">
<iframe id="doc" src="https://showroom.{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/content" width="100%" style="border:none;"></iframe>
<iframe id="doc" src="https://showroom-{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/content" width="100%" style="border:none;"></iframe>
</div>
<div class="split right">
<div class="tab">
Expand All @@ -19,11 +19,11 @@
{{- end }}
</div>
<div id="terminal_tab" class="tabcontent">
<iframe id="terminal_01" src="https://showroom.{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/terminal" width="100%" style="border:none;"></iframe>
<iframe id="terminal_01" src="https://showroom-{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/terminal" width="100%" style="border:none;"></iframe>
</div>
{{- if .Values.codeserver.setup }}
<div id="codeserver_tab" class="tabcontent">
<iframe id="codeserver" src="https://showroom.{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/codeserver" width="100%" style="border:none;"></iframe>
<iframe id="codeserver" src="https://showroom-{{ .Release.Namespace }}.{{ .Values.deployer.domain }}/codeserver" width="100%" style="border:none;"></iframe>
</div>
{{- end }}
</div>
Expand Down

0 comments on commit 7a23870

Please sign in to comment.