-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08e25b7
commit faefa55
Showing
6 changed files
with
52 additions
and
41 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Thanks for installing Octopus Deploy! | ||
|
||
Your Octopus Server is now starting. | ||
|
||
{{- if not .Values.octopus.ingress.enabled }} | ||
To connect, you can use the following command, then go to http://localhost:8080 in your web browser: | ||
$ kubectl --namespace {{.Release.Namespace}} port-forward svc/{{ template "octopus.fullname" . }} 8080:{{.Values.octopus.webPort}} | ||
{{- end }} | ||
|
||
{{- if or (not .Values.octopus.masterKey) or (not .Values.octopus.password) or (and .Values.mssql.enabled (not .Values.mssql.SA_PASSWORD)) }} | ||
At least one required secret was not set, and has been autogenerated for you: | ||
{{- if not .Values.octopus.masterKey }} | ||
Master Key: {{ index (index .Release "generatedSecrets") (printf "%s-%s" .Release.Name "masterkey") }} | ||
{{- end -}} | ||
{{- if not .Values.octopus.password }} | ||
Admin Password: {{ index (index .Release "generatedSecrets") (printf "%s-%s" .Release.Name "adminpassword") }} | ||
{{- end -}} | ||
{{- if and .Values.mssql.enabled (not .Values.mssql.SA_PASSWORD) }} | ||
SQL Server "SA" User Password: {{ index (index .Release "generatedSecrets") (printf "%s-%s" .Release.Name "sapassword") }} | ||
{{- end -}} | ||
{{- 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