Skip to content

Commit

Permalink
Merge pull request #5969 from shaneknapp/fix-sops-creds
Browse files Browse the repository at this point in the history
[DH-301] set env var for sops to use for auth
  • Loading branch information
shaneknapp authored Aug 19, 2024
2 parents 7efb398 + 8b1addc commit c68d215
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/deploy-to-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ jobs:
- name: Install SOPS
if: ${{ env.DEPLOY }}
run: |
mkdir -p ${HOME}/repo/bin
curl -sSL https://github.com/mozilla/sops/releases/download/v3.7.0/sops-v3.7.0.linux -o ${HOME}/repo/bin/sops
chmod 755 ${HOME}/repo/bin/sops
echo "${HOME}/repo/bin" >> $GITHUB_PATH
mkdir -p ${HOME}/bin
curl -sSL https://github.com/mozilla/sops/releases/download/v3.7.0/sops-v3.7.0.linux -o ${HOME}/bin/sops
chmod 755 ${HOME}/bin/sops
echo "${HOME}/bin" >> $GITHUB_PATH
- name: Install Helm
if: ${{ env.DEPLOY }}
Expand All @@ -78,6 +78,8 @@ jobs:
- name: Deploy hubs to staging
if: ${{ env.DEPLOY }}
run: |
echo ${{ secrets.SOPS_KEY }} > ${HOME}/sops.key
export GOOGLE_APPLICATION_CREDENTIALS="${HOME}/sops.key"
for hub in $(echo -e "${{ env.DEPLOY_HUBS }}"); do
echo "Deploying $hub to staging"
hubploy --verbose deploy $hub hub staging
Expand Down
2 changes: 1 addition & 1 deletion deployments/logodev/hubploy.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
images:
images:
# temporary update
- name: us-central1-docker.pkg.dev/ucb-datahub-2018/user-images/logodev-user-image:71e05556317f
- name: us-central1-docker.pkg.dev/ucb-datahub-2018/user-images/logodev-user-image:a9443779a3a9

cluster:
provider: gcloud
Expand Down

0 comments on commit c68d215

Please sign in to comment.