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
Having the account property named 'version' was confusing the concept of
the version the provider was at, with the version the cloud environment
was at.
Copy file name to clipboardExpand all lines: clouddriver-kubernetes/src/main/groovy/com/netflix/spinnaker/clouddriver/kubernetes/config/KubernetesConfigurationProperties.groovy
+1-1
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ class KubernetesConfigurationProperties {
Copy file name to clipboardExpand all lines: clouddriver-kubernetes/src/main/groovy/com/netflix/spinnaker/clouddriver/kubernetes/provider/KubernetesProviderConfig.groovy
+3-3
Original file line number
Diff line number
Diff line change
@@ -97,21 +97,21 @@ class KubernetesProviderConfig implements Runnable {
97
97
98
98
for (KubernetesNamedAccountCredentialscredentials : allAccounts) {
99
99
KubernetesCachingAgentDispatcher dispatcher
100
-
switch (credentials.version) {
100
+
switch (credentials.providerVersion) {
101
101
caseProviderVersion.v1:
102
102
dispatcher = kubernetesV1CachingAgentDispatcher
103
103
break
104
104
caseProviderVersion.v2:
105
105
dispatcher = kubernetesV2CachingAgentDispatcher
106
106
break
107
107
default:
108
-
log.warn "No support for caching accounts of $credentials.version"
108
+
log.warn "No support for caching accounts of $credentials.providerVersion"
Copy file name to clipboardExpand all lines: clouddriver-kubernetes/src/main/groovy/com/netflix/spinnaker/clouddriver/kubernetes/security/KubernetesNamedAccountCredentials.java
Copy file name to clipboardExpand all lines: clouddriver-kubernetes/src/main/groovy/com/netflix/spinnaker/clouddriver/kubernetes/security/KubernetesNamedAccountCredentialsInitializer.groovy
+1-1
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ class KubernetesNamedAccountCredentialsInitializer implements CredentialsInitial
0 commit comments