Skip to content

Commit

Permalink
minor fix to eks-starter.yaml
Browse files Browse the repository at this point in the history
fixes deployment template readiness and liveness probes with correct port

Signed-off-by: Guy Arad <[email protected]>
  • Loading branch information
guyarad committed Nov 5, 2023
1 parent 6425a2a commit 24be4d9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
3 changes: 2 additions & 1 deletion charts/flyte-binary/eks-starter.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
configuration:
database:
username: <DB_USERNAME>
password: <DB_PASSWORD>
host: <RDS_HOST_DNS>
dbname: app # what is this? why not flyteadmin or flyte?
dbname: flyteadmin (<INITAL_DB>)
storage:
metadataContainer: <BUCKET_NAME>
userDataContainer: <USER_DATA_BUCKET_NAME>
Expand Down
1 change: 1 addition & 0 deletions charts/flyte-binary/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ spec:
httpGet:
path: /healthcheck
port: http
initialDelaySeconds: 30
{{- end }}
{{- if .Values.deployment.resources }}
resources: {{- toYaml .Values.deployment.resources | nindent 12 }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,7 @@ spec:
httpGet:
path: /healthcheck
port: http
initialDelaySeconds: 30
volumeMounts:
- name: cluster-resource-templates
mountPath: /etc/flyte/cluster-resource-templates
Expand Down
7 changes: 6 additions & 1 deletion script/generate_helm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}

Expand Down

0 comments on commit 24be4d9

Please sign in to comment.