File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Dev/testing friendly settings for Kueue.
2
+
3
+ # Use default settings as a base.
4
+ resources :
5
+ - ../default
6
+
7
+ patches :
8
+ # Modify logging for better user experience.
9
+ - path : manager_config_patch.yaml
10
+ target :
11
+ kind : Deployment
Original file line number Diff line number Diff line change
1
+ # This patch adds the args to allow exposing the metrics endpoint using HTTPS
2
+ - op : add
3
+ path : /spec/template/spec/containers/0/args/0
4
+ value : --zap-devel
5
+ - op : add
6
+ path : /spec/template/spec/containers/0/args/0
7
+ value : --zap-log-level=3
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ function cluster_slice_deploy {
109
109
(cd config/manager && $KUSTOMIZE edit set image controller=" $IMAGE_TAG " )
110
110
111
111
local build_output
112
- build_output=$( $KUSTOMIZE build " ${ROOT_DIR} /config/default " )
112
+ build_output=$( $KUSTOMIZE build " ${ROOT_DIR} /config/dev " )
113
113
build_output=" ${build_output// $DEFAULT_SLICE_NAMESPACE / $SLICE_NAMESPACE } "
114
114
echo " $build_output " | kubectl apply --kubeconfig=" $1 " --server-side -f -
115
115
You can’t perform that action at this time.
0 commit comments