From 7fed1fd056065a7e52b62409eb2097e31e4bd75c Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Thu, 26 Nov 2020 21:06:23 +0500 Subject: [PATCH] Add reasonable defaults --- test/ix-chart/2010.0.2/values.yaml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/test/ix-chart/2010.0.2/values.yaml b/test/ix-chart/2010.0.2/values.yaml index db558cfd91..f445446ae7 100644 --- a/test/ix-chart/2010.0.2/values.yaml +++ b/test/ix-chart/2010.0.2/values.yaml @@ -6,13 +6,26 @@ image: # Overrides the image tag whose default is the chart appVersion. tag: "testing" +# Restart / Update policy +restartPolicy: Always +updateStrategy: RollingUpdate + # Container CMD / entrypoint -containerCommand: [] -containerArgs: [] +containerCommand: + - sleep +containerArgs: + - infinity containerEnvironmentVariables: [] # Network related configuration externalInterfaces: [] +portForwardingList: [] +hostPortsList: [] +hostNetwork: false +dnsPolicy: Default +dnsConfig: + nameservers: [] + searches: [] # Storage related configuration hostPathVolumes: [] @@ -21,3 +34,8 @@ volumes: [] # Probes # Liveness Probe livenessProbe: null + +# Workload type +workloadType: "Deployment" + +gpuConfiguration: {}