898abb4a75
This commit implements what was discussed on the PTG, i.e. deprecation of running Kuryr-Kubernetes without kuryr-daemon services. This commit includes changes in configuration defaults, sample local.conf files, documentation, gates and a release note explaining the change. Change-Id: I152c81797cb83237af4917a4487cb1f1918270aa
14 lines
322 B
Bash
Executable File
14 lines
322 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
CNI_BIN_DIR=$1
|
|
CNI_CONF_DIR=$2
|
|
CNI_DAEMON=${3:-"True"}
|
|
CNI_TAG="kuryr/cni"
|
|
|
|
# create cni daemonset image
|
|
docker build -t "$CNI_TAG" \
|
|
--build-arg "CNI_BIN_DIR_PATH=$CNI_BIN_DIR" \
|
|
--build-arg "CNI_CONFIG_DIR_PATH=$CNI_CONF_DIR" \
|
|
--build-arg "CNI_DAEMON=$CNI_DAEMON" \
|
|
-f cni.Dockerfile .
|