Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating supporting tools to latest versions #96

Merged
merged 1 commit into from
Jan 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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