Skip to content

Commit

Permalink
Merge pull request #96 from jsturtevant/update-tools
Browse files Browse the repository at this point in the history
Updating supporting tools to latest versions
  • Loading branch information
k8s-ci-robot committed Jan 3, 2023
2 parents 77880c6 + cb81d93 commit 6c9453f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
unit:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -22,7 +22,7 @@ jobs:
env:
T: unit
integration:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -34,7 +34,7 @@ jobs:
env:
T: integration
deploy-method-download:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -47,7 +47,7 @@ jobs:
T: integration
DEPLOY_METHOD: download
tolerate-control-plane:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -61,7 +61,7 @@ jobs:
NUM_NODES: 0
EXTRA_GMSA_DEPLOY_ARGS: --tolerate-master
dry-run-deploy:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -73,7 +73,7 @@ jobs:
env:
T: dry_run_deploy
without-envsubst:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -86,7 +86,7 @@ jobs:
T: integration
WITHOUT_ENVSUBST: 1
without-envsubst-tolerations:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand All @@ -101,7 +101,7 @@ jobs:
WITHOUT_ENVSUBST: 1
EXTRA_GMSA_DEPLOY_ARGS: --tolerate-master
chart-integration:
runs-on: ubuntu-18.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Go
Expand Down
2 changes: 1 addition & 1 deletion admission-webhook/make/dev_cluster.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ KUBERNETES_VERSION ?= 1.26.0
# see https://github.com/kubernetes-sigs/kind/releases
KIND_VERSION = 0.17.0
# https://github.com/helm/helm/releases
HELM_VERSION ?= 3.8.0
HELM_VERSION ?= 3.10.3

CLUSTER_NAME ?= windows-gmsa-dev
DEPLOYMENT_NAME ?= windows-gmsa-dev
Expand Down
2 changes: 1 addition & 1 deletion admission-webhook/make/helm.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ endif
.PHONY: _deploy_certmanager
_deploy_certmanager: remove_certmanager
KUBECONFIG=$(KUBECONFIG) $(KUBECTL) create namespace cert-manager
KUBECONFIG=$(KUBECONFIG) $(KUBECTL) apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.7.1/cert-manager.yaml
KUBECONFIG=$(KUBECONFIG) $(KUBECTL) apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.10.1/cert-manager.yaml
KUBECONFIG=$(KUBECONFIG) $(KUBECTL) wait -n cert-manager pod -l app=cainjector --for=condition=Ready
KUBECONFIG=$(KUBECONFIG) $(KUBECTL) wait -n cert-manager pod -l app=webhook --for=condition=Ready

Expand Down
2 changes: 1 addition & 1 deletion charts/gmsa/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ certificates:
certManager:
# Enable cert manager integration. Cert manager should be already installed at the k8s cluster
enabled: true
version: "v1.7.1"
version: "v1.10.1"
# If cert-manager integration is disabled, add self-signed ca.crt in base64 format
caBundle: ""
# If cert-manager integration is disabled, upload certs data (ca.crt, tls.crt and tls.key) as k8s secretName in the namespace
Expand Down

0 comments on commit 6c9453f

Please sign in to comment.