polite-holiday-83458
11/29/2023, 2:16 PMconfiguration:
storage:
metadataContainer: <BUCKET_NAME>
userDataContainer: <USER_DATA_BUCKET_NAME>
provider: s3
providerConfig:
s3:
region: "<AWS_REGION>"
authType: "iam"
proud-answer-87162
11/29/2023, 2:36 PM<BUCKET_NAME>
and the other vars are strings that can be defined in the values.yaml file, one of the overrides, or reference a predefined value in another helm chart.
are you having an issue defining them?polite-holiday-83458
11/29/2023, 2:41 PMhelm install flyte-backend flyteorg/flyte-binary --dry-run --namespace flyte --values eks_test.yaml
and its giving the issue :
Error: INSTALLATION FAILED: Kubernetes cluster unreachable: Get "<https://127.0.0.1:30086/version>": dial tcp 127.0.0.1:30086: connect: connection refused
polite-holiday-83458
11/29/2023, 2:42 PMproud-answer-87162
11/29/2023, 2:44 PMi was just curious regarding whether USER_DATA_BUCKET_NAME and BUCKET_NAME corresponds to the diffferent S3 object storages or they can be set to unique .I set them to the same bucket for simplicity but you should be able to make them unique if that is what your use case calls for.
proud-answer-87162
11/29/2023, 2:44 PMsorry for the naive queries. i am new to the k8s and cloud native ecosystem and thanks a tonno worries! i'm new to kubernetes and flyte as well
proud-answer-87162
11/29/2023, 2:46 PMpolite-holiday-83458
11/29/2023, 2:47 PMflytectl config init --host={FLYTEADMIN_URL} --storage
proud-answer-87162
11/29/2023, 2:51 PMkubectl cluster-info
?polite-holiday-83458
11/29/2023, 2:53 PME1129 14:52:36.629697 1264538 memcache.go:265] couldn't get current server API group list: Get "<https://127.0.0.1:30086/api?timeout=32s>": dial tcp 127.0.0.1:30086: connect: connection refused
E1129 14:52:36.630035 1264538 memcache.go:265] couldn't get current server API group list: Get "<https://127.0.0.1:30086/api?timeout=32s>": dial tcp 127.0.0.1:30086: connect: connection refused
seems that its clashing with the port that is already running or issue of sudo ?proud-answer-87162
11/29/2023, 2:54 PMpolite-holiday-83458
11/29/2023, 2:57 PMproud-answer-87162
11/29/2023, 2:58 PMproud-answer-87162
11/29/2023, 2:59 PMproud-answer-87162
11/29/2023, 2:59 PMpolite-holiday-83458
11/29/2023, 3:02 PMflytectl demo start
and then FLYTECTL_CONFIG set up with that yaml fileproud-answer-87162
11/29/2023, 3:02 PMproud-answer-87162
11/29/2023, 3:02 PMproud-answer-87162
11/29/2023, 3:05 PMkubectl
directly, here is a link to updating the configpolite-holiday-83458
11/29/2023, 3:10 PMpolite-holiday-83458
11/30/2023, 3:09 PMError:
1 error(s) decoding:
* '' has invalid keys: console
strict mode is on but received keys [map[level:{}]] to decode with no config assigned to receive them: failed strict mode check
ERRO[0000]
1 error(s) decoding:
* '' has invalid keys: console
strict mode is on but received keys [map[level:{}]] to decode with no config assigned to receive them: failed strict mode check src="main.go:13"
then after just going through the documentation and concepts regarding kubernetes , i saw about kind
and its being the cli specifically for deploying the clusters specifically . ( i normally thought that helm is gonna do this naturally but maybe in my case ), , so
finally after doing kind create cluster --config eks_config_file.yaml
and then the helm command i was able to get the deployment chart .
but i do appreciate the references you've shared that kind of get me to the learning curve in understanding kubernetes.