You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: jupyterhub/templates/NOTES.txt
+49-31Lines changed: 49 additions & 31 deletions
Original file line number
Diff line number
Diff line change
@@ -58,17 +58,27 @@ If you have questions, please:
58
58
Warnings for likely misconfiguration
59
59
*/}}
60
60
61
-
{{- if and (not .Values.scheduling.podPriority.enabled) (and .Values.scheduling.userPlaceholder.enabled .Values.scheduling.userPlaceholder.replicas) }}
62
-
63
-
WARNING: You are using user placeholders without pod priority enabled, either
64
-
enable pod priority or stop using the user placeholders to avoid wasting cloud
65
-
resources.
61
+
{{- if and (not .Values.scheduling.podPriority.enabled) (and .Values.scheduling.userPlaceholder.enabled .Values.scheduling.userPlaceholder.replicas) }}{{ println }}
{{- fail "\n\nHARD DEPRECATION: proxy.containerSecurityContext has been renamed to proxy.chp.containerSecurityContext" }}
118
+
{{- if hasKey .Values.proxy "containerSecurityContext" }}
119
+
{{- $breaking = print $breaking "\n\nRENAMED: proxy.containerSecurityContext has been renamed to proxy.chp.containerSecurityContext" }}
99
120
{{- end }}
100
121
101
122
102
123
{{- if hasKey .Values.proxy "pdb" }}
103
-
{{ fail "\n\nHARD DEPRECATION: proxy.pdb has renamed to proxy.chp.pdb" }}
124
+
{{- $breaking = print $breaking "\n\nRENAMED: proxy.pdb has renamed to proxy.chp.pdb" }}
104
125
{{- end }}
105
126
106
127
107
-
{{- if .Values.proxy.networkPolicy }}
108
-
{{- fail "\n\nHARD DEPRECATION: proxy.networkPolicy has been renamed to proxy.chp.networkPolicy" }}
128
+
{{- if hasKey .Values.proxy "networkPolicy" }}
129
+
{{- $breaking = print $breaking "\n\nRENAMED: proxy.networkPolicy has been renamed to proxy.chp.networkPolicy" }}
109
130
{{- end }}
110
131
111
132
112
133
{{- if hasKey .Values.hub "uid" }}
113
-
{{- print "\n\nDEPRECATION: hub.uid is deprecated in jupyterhub chart 0.9. Set the hub.containerSecurityContext.runAsUser value directly instead." }}
134
+
{{- $breaking = print $breaking "\n\nRENAMED: hub.uid must as of 1.0.0 be configured using hub.containerSecurityContext.runAsUser" }}
114
135
{{- end }}
115
136
116
137
117
-
{{- if (.Values.hub | dig "imagePullSecret" "enabled" "") }}
118
-
{{- fail "\n\nHARD DEPRECATION: hub.imagePullSecret has renamed to imagePullSecret" }}
138
+
{{- if hasKey .Values.hub "imagePullSecret" }}
139
+
{{- $breaking = print $breaking "\n\nREMOVED: hub.imagePullSecret has been removed, but there is now a chart wide wide configuration named imagePullSecret" }}
119
140
{{- end }}
120
141
121
142
122
-
{{- if (.Values.singleuser | dig "imagePullSecret" "enabled" "") }}
123
-
{{- fail "\n\nHARD DEPRECATION: singleuser.imagePullSecret has renamed to imagePullSecret" }}
143
+
{{- if hasKey .Values.singleuser "imagePullSecret" }}
144
+
{{- $breaking = print $breaking "\n\nREMOVED: singleuser.imagePullSecret has been removed, but there is now a chart wide wide configuration named imagePullSecret" }}
124
145
{{- end }}
125
146
126
147
127
-
{{- if (.Values.singleuser | dig "cloudMetadata" "enabled" "") }}
128
-
{{- print "\n\nDEPRECATION: singleuser.cloudMetadata.enabled is deprecated, instead use singleuser.cloudMetadata.blockWithIptables with the inverted value." }}
148
+
{{- if hasKey .Values.singleuser.cloudMetadata "enabled" }}
149
+
{{- $breaking = print $breaking "\n\nCHANGED: singleuser.cloudMetadata.enabled must as of 1.0.0 be configured using singleuser.cloudMetadata.blockWithIptables with the opposite value." }}
0 commit comments