diff --git a/charts/flyte-binary/eks-starter.yaml b/charts/flyte-binary/eks-starter.yaml index 1ffe5146c6..c7ca135340 100644 --- a/charts/flyte-binary/eks-starter.yaml +++ b/charts/flyte-binary/eks-starter.yaml @@ -1,8 +1,9 @@ configuration: database: + username: password: host: - dbname: app # what is this? why not flyteadmin or flyte? + dbname: flyteadmin () storage: metadataContainer: userDataContainer: diff --git a/charts/flyte-binary/templates/deployment.yaml b/charts/flyte-binary/templates/deployment.yaml index a201a4a300..d1be13d166 100644 --- a/charts/flyte-binary/templates/deployment.yaml +++ b/charts/flyte-binary/templates/deployment.yaml @@ -202,6 +202,7 @@ spec: httpGet: path: /healthcheck port: http + initialDelaySeconds: 30 {{- end }} {{- if .Values.deployment.resources }} resources: {{- toYaml .Values.deployment.resources | nindent 12 }} diff --git a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml index 1022ed1adc..6be6f29c35 100644 --- a/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml +++ b/deployment/sandbox-binary/flyte_sandbox_binary_helm_generated.yaml @@ -422,6 +422,7 @@ spec: httpGet: path: /healthcheck port: http + initialDelaySeconds: 30 volumeMounts: - name: cluster-resource-templates mountPath: /etc/flyte/cluster-resource-templates diff --git a/script/generate_helm.sh b/script/generate_helm.sh index 183b22debc..43caee8203 100755 --- a/script/generate_helm.sh +++ b/script/generate_helm.sh @@ -4,9 +4,14 @@ set -ex echo "Generating Helm" -curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash +HELM_SKIP_INSTALL=${HELM_SKIP_INSTALL:-false} + +if [ "${HELM_SKIP_INSTALL}" != "true" ]; then + curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash +fi helm version + # All the values files to be built DEPLOYMENT_CORE=${1:-eks gcp}