File tree 3 files changed +7
-2
lines changed
charts/kube-ovn/templates
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 47
47
{{- if .Values.DPDK }}
48
48
command : ["/kube-ovn/start-ovs-dpdk.sh"]
49
49
{{- else }}
50
- command :
50
+ args :
51
51
{{- if .Values.DISABLE_MODULES_MANAGEMENT }}
52
52
- /bin/sh
53
53
- -ec
Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ FROM kubeovn/kube-ovn-base:$BASE_TAG
5
5
6
6
RUN apt update && apt install psmisc -y
7
7
8
+ ARG TINI_VERSION=v0.19.0
9
+ ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
10
+ RUN chmod +x /tini
11
+ ENTRYPOINT ["/tini" , "-svw" , "--" ]
12
+
8
13
COPY *.sh /kube-ovn/
9
14
COPY kubectl-ko /kube-ovn/kubectl-ko
10
15
COPY 01-kube-ovn.conflist /kube-ovn/01-kube-ovn.conflist
Original file line number Diff line number Diff line change @@ -3646,7 +3646,7 @@ spec:
3646
3646
- name: openvswitch
3647
3647
image: "$REGISTRY /kube-ovn:$VERSION "
3648
3648
imagePullPolicy: $IMAGE_PULL_POLICY
3649
- command :
3649
+ args :
3650
3650
- /kube-ovn/start-ovs.sh
3651
3651
securityContext:
3652
3652
runAsUser: 0
You can’t perform that action at this time.
0 commit comments