Skip to content

Commit

Permalink
Merge pull request #48 from BrownUniversity/qa
Browse files Browse the repository at this point in the history
 Fix builldx error
  • Loading branch information
brtduvally authored Aug 6, 2024
2 parents 37e79a8 + 70954ba commit 9426216
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/dev-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Get kubectl
uses: azure/setup-kubectl@v3
with:
version: v1.22.0
version: v1.26.0
-
name: pull kubeconfig
run: |
Expand All @@ -35,6 +35,11 @@ jobs:
echo "$DBKPI_KUBECONF" > secrets/dev-bkpi.yaml
echo "$DBKPD_KUBECONF" > secrets/dev-bkpd.yaml
echo "$ROBOT_DEV" > secrets/robot-dev.txt
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
-
name: Build
run: make build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/dr-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Get kubectl
uses: azure/setup-kubectl@v3
with:
version: v1.22.0
version: v1.26.0
-
name: pull kubeconfig
run: |
Expand All @@ -34,6 +34,11 @@ jobs:
echo "$DRBKPI_KUBECONF" > secrets/dr-bkpi.yaml
echo "$DRBKPD_KUBECONF" > secrets/dr-bkpd.yaml
echo "$ROBOT_DR" > secrets/robot-dr.txt
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
-
name: Build
run: make build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/prod-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: Get kubectl
uses: azure/setup-kubectl@v3
with:
version: v1.22.0
version: v1.26.0
-
name: pull kubeconfig
run: |
Expand All @@ -34,6 +34,11 @@ jobs:
echo "$PBKPI_KUBECONF" > secrets/prod-bkpi.yaml
echo "$PBKPD_KUBECONF" > secrets/prod-bkpd.yaml
echo "$ROBOT_PROD" > secrets/robot-prod.txt
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
-
name: Build
run: make build
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/qa-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Get kubectl
uses: azure/setup-kubectl@v3
with:
version: v1.22.0
version: v1.26.0
-
name: pull kubeconfig
run: |
Expand All @@ -35,6 +35,11 @@ jobs:
echo "$QBKPI_KUBECONF" > secrets/qa-bkpi.yaml
echo "$QBKPD_KUBECONF" > secrets/qa-bkpd.yaml
echo "$ROBOT_QA" > secrets/robot-qa.txt
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true
-
name: Build
run: make build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ clean:

#build: @ Build bkextest image
build:
docker build -t harbor.services.brown.edu/bkextest/bkextest -t harbor.cis-qas.brown.edu/bkextest/bkextest -t harbordr.services.brown.edu/bkextest/bkextest -t harbor.cis-dev.brown.edu/bkextest/bkextest ./
docker build --load -t harbor.services.brown.edu/bkextest/bkextest -t harbor.cis-qas.brown.edu/bkextest/bkextest -t harbordr.services.brown.edu/bkextest/bkextest -t harbor.cis-dev.brown.edu/bkextest/bkextest ./

## Docker Logins

Expand Down

0 comments on commit 9426216

Please sign in to comment.