-
Hi Guys, I am facing an issue:
tried before to run: cf-install-values.yml :
before I tried:
the same issue... hope someone can guide me in the right direction, cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I think I followed an old document: and it works |
Beta Was this translation helpful? Give feedback.
-
Hey @enkicoma After some digging around, this is what I found. The error message that you see there should read as follow ytt tried to merge together all these data values files (values/00-values.yml, values/10-images.yml, values/20-secrets-config-values.yml, values/30-experimental-values.yml, cf-install-values.yml) but because kpack key is not present in values/00-values.yml ytt does not know how to interpret it. In other words, the kpack key is never referenced in any of the values files, except for cf-install-values.yml, so it is not valid. ytt Specific Solution: #@data/values
#@overlay/match-child-defaults missing_ok=True
---
kpack:
registry:
hostname: https://index.docker.io/v1/
repository: cloudfoundry/capi
username: "%$$"
password: "$$-$$-$$-$$-$$" The emphasis here is in the annotation cf-for-k8s Specific Solution: Another thing that I noticed is that you are doing
you can remove the last -f |
Beta Was this translation helpful? Give feedback.
I think I followed an old document:
here is the latest:
https://github.com/cloudfoundry/cf-for-k8s/blob/develop/docs/getting-started-tutorial.md
and it works