chore(actions): changing deploy command for assist
This commit is contained in:
parent
b2a5670552
commit
c7b6122c2c
2 changed files with 8 additions and 3 deletions
2
.github/workflows/utilities-ee.yaml
vendored
2
.github/workflows/utilities-ee.yaml
vendored
|
|
@ -10,7 +10,7 @@ on:
|
|||
- "!utilities/.gitignore"
|
||||
- "!utilities/*-dev.sh"
|
||||
|
||||
name: Build and Deploy Utilities EE
|
||||
name: Build and Deploy Assist EE
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
|
|
|
|||
9
.github/workflows/utilities.yaml
vendored
9
.github/workflows/utilities.yaml
vendored
|
|
@ -9,7 +9,7 @@ on:
|
|||
- "!utilities/.gitignore"
|
||||
- "!utilities/*-dev.sh"
|
||||
|
||||
name: Build and Deploy Utilities
|
||||
name: Build and Deploy Assist
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
|
|
@ -52,7 +52,12 @@ jobs:
|
|||
sed -i "s#domain_name.*#domain_name: \"foss.openreplay.com\" #g" vars.yaml
|
||||
sed -i "s#kubeconfig.*#kubeconfig_path: ${KUBECONFIG}#g" vars.yaml
|
||||
sed -i "s/image_tag:.*/image_tag: \"$IMAGE_TAG\"/g" vars.yaml
|
||||
bash kube-install.sh --app utilities
|
||||
# bash kube-install.sh --app utilities
|
||||
# Deploy command
|
||||
mv openreplay/charts/{ingress-nginx,assist,quickwit} /tmp
|
||||
rm -rf openreplay/charts/*
|
||||
mv /tmp/{ingress-nginx,assist,quickwit} openreplay/charts/
|
||||
helm template openreplay -n app openreplay -f vars.yaml -f /tmp/image_override.yaml --set ingress-nginx.enabled=false --set skipMigration=true --no-hooks --kube-version=$k_version | kubectl apply -f -
|
||||
env:
|
||||
DOCKER_REPO: ${{ secrets.OSS_REGISTRY_URL }}
|
||||
IMAGE_TAG: ${{ github.ref_name }}_${{ github.sha }}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue