This message was deleted.
# ask-for-help
s
This message was deleted.
x
It looks like you have a problem with your k8s cluster, manually see if you can get the secret:
Copy code
kubectl -n yatai-system get secret yatai-common-env
s
Does this look right?
Wonder if it could be related to this:
x
I think you should check your network. I can't reproduce the error your preferred
👍 1
s
Ahh ok will try to debug that, any idea why the
kubectl apply -f my_deployment.yaml
isnt creating a deployment?
I figured out what the issue was, it was related to helm, fixed that by running
Copy code
helm upgrade --install yatai-image-builder yatai-image-builder \
    --repo <https://bentoml.github.io/helm-charts> \
    -n yatai-image-builder \
    --set dockerRegistry.server=$DOCKER_REGISTRY_SERVER \
    --set dockerRegistry.inClusterServer=$DOCKER_REGISTRY_IN_CLUSTER_SERVER \
    --set dockerRegistry.username=$DOCKER_REGISTRY_USERNAME \
    --set dockerRegistry.password=$DOCKER_REGISTRY_PASSWORD \
    --set dockerRegistry.secure=$DOCKER_REGISTRY_SECURE \
    --set dockerRegistry.bentoRepositoryName=$DOCKER_REGISTRY_BENTO_REPOSITORY_NAME
in a different directory. 🙏 Still not able to
kubectl apply
though.