mirror of
https://github.com/k8snetworkplumbingwg/whereabouts.git
synced 2025-06-03 06:42:26 +00:00
Merge pull request #605 from thomasferrandiz/fix-chart-and-source
Fix chart and source command in scripts
This commit is contained in:
commit
bccf0baae1
@ -1,3 +1,4 @@
|
|||||||
|
# Dont'forget to update doc/crds/daemonset-install.yaml as well
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: DaemonSet
|
kind: DaemonSet
|
||||||
metadata:
|
metadata:
|
||||||
@ -39,8 +40,9 @@ spec:
|
|||||||
command: [ "/bin/sh" ]
|
command: [ "/bin/sh" ]
|
||||||
args:
|
args:
|
||||||
- -c
|
- -c
|
||||||
- >
|
- |
|
||||||
SLEEP=false /install-cni.sh &&
|
SLEEP=false source /install-cni.sh
|
||||||
|
/token-watcher.sh &
|
||||||
/ip-control-loop -log-level debug
|
/ip-control-loop -log-level debug
|
||||||
env:
|
env:
|
||||||
- name: NODENAME
|
- name: NODENAME
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# Dont'forget to update doc/crds/node-slice-controller.yaml as well
|
||||||
{{- if .Values.nodeSliceController.enabled }}
|
{{- if .Values.nodeSliceController.enabled }}
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# Dont'forget to update deployment/whereabouts-chart/templates/daemonset.yaml as well
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# Dont'forget to update deployment/whereabouts-chart/templates/node-slice-controller.yaml as well
|
||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -10,7 +10,7 @@ set -u -e
|
|||||||
#
|
#
|
||||||
#SPDX-License-Identifier: Apache-2.0
|
#SPDX-License-Identifier: Apache-2.0
|
||||||
|
|
||||||
source lib.sh
|
source /lib.sh
|
||||||
|
|
||||||
# Setup our logging routines
|
# Setup our logging routines
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
set -u -e
|
set -u -e
|
||||||
|
|
||||||
source lib.sh
|
source /lib.sh
|
||||||
|
|
||||||
echo "Sleep and Watching for service account token and CA file changes..."
|
echo "Sleep and Watching for service account token and CA file changes..."
|
||||||
# enter sleep/watch loop
|
# enter sleep/watch loop
|
||||||
|
Loading…
Reference in New Issue
Block a user