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
I've been trying to deploy Kubeflow 1.7 RC1 with kustomize 5 and get into an endless loop with the following error showing up:
The request is invalid: patch: Invalid value: "map[2023/02/27 11:40:30 well-defined vars that were never replaced:kfp-app-version,kfp-app-name metadata:map[annotations:map[kubectl.kubernetes.io/last-applied-configuration:{\"2023/02/27 11:40:30 well-defined vars that were never replaced\":\"kfp-app-version,kfp-app-name\",\"apiVersion\":\"v1\",\"kind\":\"Namespace\",\"metadata\":{\"annotations\":{},\"name\":\"auth\"}}\n]]]": strict decoding error: unknown field "2023/02/27 11:40:30 well-defined vars that were never replaced"
When looking for the manifest which uses the kfp-app-name and kfp-app-version I've only been able to see the application resource but as I understand this resource is not installed in the default deployment.
Steps to reproduce:
# Clone 1.7 RC1 manifests# ...# Download Kustomize 5
wget https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize%2Fv5.0.0/kustomize_v5.0.0_linux_amd64
mv kustomize_v5.0.0_linux_amd64.tar.gz kustomize
chmod +x kustomize
# Install microk8s
sudo snap install microk8s --classic --channel=1.25/stable
microk8s enable dns hostpath-storage
sudo snap alias microk8s.kubectl kubectl
# Install manifests with one linerwhile! ./kustomize build example | kubectl apply -f -;doecho"Retrying to apply resources"; sleep 10;done
The text was updated successfully, but these errors were encountered:
I've been trying to deploy Kubeflow 1.7 RC1 with kustomize 5 and get into an endless loop with the following error showing up:
When looking for the manifest which uses the
kfp-app-name
andkfp-app-version
I've only been able to see the application resource but as I understand this resource is not installed in the default deployment.Steps to reproduce:
The text was updated successfully, but these errors were encountered: