Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions charts/core/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@ spec:
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: RANCHER_CLUSTER_NAME
value: "{{ .Values.global.cattle.clusterName }}"
{{- if .Values.controller.ranchersso.enabled }}
- name: RANCHER_SSO
value: "1"
Expand Down
7 changes: 6 additions & 1 deletion charts/core/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@
"properties": {
"cattle": {
"type": "object",
"description": "required for rancher authentication", "properties": {
"description": "required for rancher authentication",
"properties": {
"url": {
"type": ["string", "null"],
"description": "Set the Rancher Server URL; Required for Rancher Authentication. https://<Rancher_URL>/",
"format": "uri"
},
"clusterName": {
"type": ["string", "null"],
"description": "Rancher management cluster name"
}
}
},
Expand Down
1 change: 1 addition & 0 deletions charts/core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ leastPrivilege: false
global: # required for rancher authentication (https://<Rancher_URL>/)
cattle:
url:
clusterName:
azure:
enabled: false
identity:
Expand Down
Loading