Skip to content

Commit 4a0f5e9

Browse files
authored
Merge pull request #57 from tmax-cloud/chore/release-5.0.6
[chore] release 5.0.6
2 parents 0308d25 + b5cc0ae commit 4a0f5e9

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/main.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
pull_request:
1010
jobs:
1111
test_crd:
12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-20.04
1313
steps:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-go@v2
@@ -18,15 +18,15 @@ jobs:
1818
- name: crd test
1919
run: make test-crd
2020
test_gen:
21-
runs-on: ubuntu-18.04
21+
runs-on: ubuntu-20.04
2222
steps:
2323
- uses: actions/checkout@v2
2424
with:
2525
go-version: 1.17
2626
- name: gen test
2727
run: make test-gen
2828
test_verify:
29-
runs-on: ubuntu-18.04
29+
runs-on: ubuntu-20.04
3030
steps:
3131
- uses: actions/checkout@v3
3232
- uses: actions/setup-go@v3
@@ -35,7 +35,7 @@ jobs:
3535
- name: verify test
3636
run: make test-verify
3737
test_unit:
38-
runs-on: ubuntu-18.04
38+
runs-on: ubuntu-20.04
3939
steps:
4040
- uses: actions/checkout@v3
4141
- uses: actions/setup-go@v3
@@ -44,7 +44,7 @@ jobs:
4444
- name: unit test
4545
run: make test-unit
4646
test_lint:
47-
runs-on: ubuntu-18.04
47+
runs-on: ubuntu-20.04
4848
steps:
4949
- uses: actions/checkout@v3
5050
- uses: actions/setup-go@v3
@@ -57,7 +57,7 @@ jobs:
5757
deploy-release:
5858
if: startsWith(github.ref, 'refs/tags/v')
5959
needs: [test_gen, test_verify, test_unit, test_lint, test_crd]
60-
runs-on: ubuntu-18.04
60+
runs-on: ubuntu-20.04
6161
steps:
6262
- uses: actions/checkout@v2
6363
- name: build

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ ifeq (, $(shell which controller-gen))
5353
CONTROLLER_GEN_TMP_DIR=$$(mktemp -d) ;\
5454
cd $$CONTROLLER_GEN_TMP_DIR ;\
5555
go mod init tmp ;\
56-
go get sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.1 ;\
56+
go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.4.1 ;\
5757
rm -rf $$CONTROLLER_GEN_TMP_DIR ;\
5858
}
5959
CONTROLLER_GEN=$(GOBIN)/controller-gen

deploy/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: webhook
20-
image: tmaxcloudck/image-validation-webhook:v5.0.5
20+
image: tmaxcloudck/image-validation-webhook:v5.0.6
2121
args:
2222
- --zap-log-level=debug
2323
imagePullPolicy: Always

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ kubectl apply -f deploy/role/role.yaml
1010
kubectl apply -f deploy/role/role-binding.yaml
1111

1212
kubectl apply -f deploy/whitelist-configmap.yaml
13-
kubectl apply -f deploy/deployment-dev.yaml
13+
kubectl apply -f deploy/deployment.yaml
1414
kubectl apply -f deploy/service.yaml
1515
kubectl apply -f deploy/validating-webhook.yaml
1616

0 commit comments

Comments
 (0)