We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d8fcc commit c98eefcCopy full SHA for c98eefc
environment/container/kubernetes/kubernetes.go
@@ -104,6 +104,12 @@ func (c *kubernetesRuntime) Provision(ctx context.Context) error {
104
conf = c.config()
105
}
106
107
+ if conf.Version == "" {
108
+ // this ensure if `version` tag in `kubernetes` section in yaml is empty,
109
+ // it should assign with the `DefaultVersion` for the baseURL
110
+ conf.Version = DefaultVersion
111
+ }
112
+
113
if c.isVersionInstalled(conf.Version) {
114
// runtime has changed, ensure the required images are in the registry
115
if currentRuntime := c.runtime(); currentRuntime != "" && currentRuntime != runtime {
0 commit comments