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

fix: fix init containers #199

Merged
merged 1 commit into from
Oct 25, 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
2 changes: 1 addition & 1 deletion charts/bee/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
appVersion: 1.17.5
name: bee
version: 0.14.0
version: 0.14.1
kubeVersion: ">=1.19.0-0"
description: Ethereum Swarm Bee Helm chart for Kubernetes
home: https://www.ethswarm.org
Expand Down
12 changes: 12 additions & 0 deletions charts/bee/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ spec:
{{- if .Values.libp2pSettings.enabled }}
- name: init-libp2p
image: ethersphere/busybox:1.36
securityContext:
allowPrivilegeEscalation: false
runAsUser: 0
command:
- sh
- -c
Expand All @@ -75,6 +78,9 @@ spec:
{{- if .Values.swarmSettings.enabled }}
- name: init-swarm
image: ethersphere/busybox:1.36
securityContext:
allowPrivilegeEscalation: false
runAsUser: 0
command:
- sh
- -c
Expand All @@ -94,6 +100,9 @@ spec:
{{- if .Values.p2pFixedPort.enabled }}
- name: init-natport
image: ethersphere/busybox:1.36
securityContext:
allowPrivilegeEscalation: false
runAsUser: 0
command:
- sh
- -c
Expand All @@ -114,6 +123,9 @@ spec:
{{- if .Values.autoNeighborhood.enabled }}
- name: init-neighborhood
image: ethersphere/busybox:1.36
securityContext:
allowPrivilegeEscalation: false
runAsUser: 0
command:
- sh
- -c
Expand Down
Loading