Skip to content

Commit 1b9d78d

Browse files
authored
Merge pull request jp-gouin#191 from Arano-kai/bugfix/missing_definitions
2 parents 7e8b829 + 8e2e4ab commit 1b9d78d

File tree

4 files changed

+98
-87
lines changed

4 files changed

+98
-87
lines changed

.github/actions/setup/action.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: 'Setup env'
22
description: 'Greet someone'
33
inputs:
4-
install-chaos:
4+
install-chaos:
55
description: 'Setup ChaosMesh'
66
required: true
77
default: false
@@ -18,18 +18,18 @@ runs:
1818
- name: setup cluster
1919
shell: bash
2020
run: |
21-
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
21+
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-amd64
2222
chmod +x /tmp/kind
2323
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
2424
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
2525
rm -f kubectl
2626
sudo apt update
2727
sudo apt-get install -y ldap-utils
28-
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.29.4@sha256:3abb816a5b1061fb15c6e9e60856ec40d56b7b52bcea5f5f1350bc6e2320b6f8
28+
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865
2929
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
3030
kubectl patch daemonsets -n projectcontour envoy -p '{"spec":{"template":{"spec":{"nodeSelector":{"ingress-ready":"true"}}}}}'
3131
- name: setup chaos mesh
3232
if: ${{ inputs.install-chaos == 'true' }}
3333
shell: bash
3434
run: |
35-
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind
35+
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind

Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
- bitnami-common
1414
version: ~2
1515
home: https://www.openldap.org
16-
version: 4.2.5
16+
version: 4.2.6
1717
appVersion: 2.6.7
1818
description: Community developed LDAP software
1919
icon: https://raw.githubusercontent.com/jp-gouin/helm-openldap/master/logo.png

0 commit comments

Comments
 (0)