Skip to content

Commit

Permalink
clean(tools): cleanup deploy_terraform circleci jobs and script
Browse files Browse the repository at this point in the history
Signed-off-by: Massimiliano Giovagnoli <[email protected]>
  • Loading branch information
maxgio92 committed Feb 24, 2024
1 parent 7462872 commit 802222e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
version: 2
jobs:
"test-infra/deploy/prow":
docker:
- image: amazon/aws-cli:2.6.3
steps:
- checkout
- run:
name: Deploy prow
command: |
yum update -y
yum install jq unzip git wget curl which make golang -y
wget "https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl" -O /usr/local/bin/kubectl
chmod +x /usr/local/bin/kubectl
./tools/deploy_prow.sh
workflows:
version: 2
build:
jobs:
- "test-infra/deploy/prow":
requires:
- test-infra/deploy/terraform
context: test-infra
filters:
branches:
only: master

0 comments on commit 802222e

Please sign in to comment.