Skip to content

Commit

Permalink
Merge branch 'jp-gouin:master' into feat/fix-openldap-init-issue
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfrickert authored Oct 1, 2024
2 parents 312d16b + 1b9d78d commit 376e94b
Show file tree
Hide file tree
Showing 6 changed files with 110 additions and 103 deletions.
26 changes: 11 additions & 15 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,29 +10,25 @@ assignees: ''
**Describe the bug**
A clear and concise description of what the bug is.

**Logs**
Include logs of `openldap`, try to include logs of the first start of the `openldap-0` container.

*Hint* you can use `kubectl logs <pod_name> --previous` to get the log of the previous execution of the pod

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
1. Use following values :
```yaml

```
2. Go to '....' or execute '...'
3. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
8 changes: 4 additions & 4 deletions .github/actions/setup/action.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 'Setup env'
description: 'Greet someone'
inputs:
install-chaos:
install-chaos:
description: 'Setup ChaosMesh'
required: true
default: false
Expand All @@ -18,18 +18,18 @@ runs:
- name: setup cluster
shell: bash
run: |
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-linux-amd64
curl -Lo /tmp/kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-amd64
chmod +x /tmp/kind
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl
rm -f kubectl
sudo apt update
sudo apt-get install -y ldap-utils
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.29.4@sha256:3abb816a5b1061fb15c6e9e60856ec40d56b7b52bcea5f5f1350bc6e2320b6f8
/tmp/kind create cluster --config=$GITHUB_WORKSPACE/.bin/kind-conf.yml --image=kindest/node:v1.31.0@sha256:53df588e04085fd41ae12de0c3fe4c72f7013bba32a20e7325357a1ac94ba865
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
kubectl patch daemonsets -n projectcontour envoy -p '{"spec":{"template":{"spec":{"nodeSelector":{"ingress-ready":"true"}}}}}'
- name: setup chaos mesh
if: ${{ inputs.install-chaos == 'true' }}
shell: bash
run: |
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind
curl -sSL https://mirrors.chaos-mesh.org/v2.6.2/install.sh | bash -s -- --local kind
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies:
- bitnami-common
version: ~2
home: https://www.openldap.org
version: 4.2.5
version: 4.2.6
appVersion: 2.6.7
description: Community developed LDAP software
icon: https://raw.githubusercontent.com/jp-gouin/helm-openldap/master/logo.png
Expand Down
Loading

0 comments on commit 376e94b

Please sign in to comment.