Skip to content

Commit 5c76b97

Browse files
author
Ubuntu
committed
bump k8s version
1 parent ff5348b commit 5c76b97

File tree

2 files changed

+44
-2
lines changed

2 files changed

+44
-2
lines changed

.bin/singleNode.yaml

+42
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,59 @@
11
logLevel: debug
22
global:
33
ldapDomain: "singlenode.org"
4+
existingSecret: "my-super-secret"
45
resources:
56
limits:
67
cpu: "128m"
78
memory: "64Mi"
89
replicaCount: 1
910
replication:
1011
enabled: false
12+
# customLdifFiles:
13+
# 0-root.ldif: |-
14+
# dn: dc=singlenode,dc=org
15+
# objectClass: top
16+
# objectClass: dcObject
17+
# objectClass: organization
18+
# o: MY-DOMAIN
19+
# dc: singlenode
20+
# 02-users-group.ldif: |-
21+
# dn: ou=users,dc=singlenode,dc=org
22+
# ou: users
23+
# objectClass: organizationalUnit
24+
# objectClass: top
25+
# 01-admin-read-user.ldif: |-
26+
# dn: cn=admin-read,dc=singlenode,dc=org
27+
# cn: admin-read
28+
29+
# objectClass: inetOrgPerson
30+
# objectClass: top
31+
# userPassword: {SSHA}E2vRX2ssn7ckfjXBzP27SZH9Ast4rOEo
32+
# sn: Admin read only
33+
# customAcls: |-
34+
# dn: olcDatabase={2}mdb,cn=config
35+
# changetype: modify
36+
# replace: olcAccess
37+
# olcAccess: {0}to *
38+
# by dn.exact=gidNumber=0+uidNumber=1001,cn=peercred,cn=external,cn=auth manage
39+
# by * break
40+
# olcAccess: {1}to attrs=userPassword,shadowLastChange
41+
# by self write
42+
# by dn="cn=admin,dc=singlenode,dc=org" write
43+
# by anonymous auth by * none
44+
# olcAccess: {2}to *
45+
# by dn="cn=admin-read,dc=singlenode,dc=org" read
46+
# by dn="cn=admin,dc=singlenode,dc=org" write
47+
# by self read
48+
# by * none
1149
ltb-passwd:
1250
ingress:
1351
hosts:
1452
- "ssl-ldap2.example"
53+
# ldap:
54+
# searchBase: "ou=users,dc=singlenode,dc=org"
55+
# bindDN: "cn=admin-read,dc=singlenode,dc=org"
56+
# passKey: LDAP_ADMIN_READ_PASSWORD
1557
phpldapadmin:
1658
ingress:
1759
hosts:

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
- name: setup cluster
2121
shell: bash
2222
run: |
23-
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
23+
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
2424
chmod +x /tmp/kind
25-
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.28.0@sha256:9f3ff58f19dcf1a0611d11e8ac989fdb30a28f40f236f59f0bea31fb956ccf5c
25+
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.30.0@sha256:047357ac0cfea04663786a612ba1eaba9702bef25227a794b52890dd8bcd692e
2626
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
2727
kubectl patch daemonsets -n projectcontour envoy -p '{"spec":{"template":{"spec":{"nodeSelector":{"ingress-ready":"true"}}}}}'
2828
- name: setup chaos mesh

0 commit comments

Comments
 (0)