diff options
author | Rajamohan Raj <rajamohan.raj@intel.com> | 2019-04-20 00:54:45 +0000 |
---|---|---|
committer | Rajamohan Raj <rajamohan.raj@intel.com> | 2019-04-20 00:56:28 +0000 |
commit | 2fd13e2728c1b2e1c290ff2df32b6420d1f1c45f (patch) | |
tree | 24fa5890c1eb3d0308dedde987c813d4ab275409 /vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml | |
parent | aa92ee02641b8f24615736130fa2d7d63abd9934 (diff) |
Fixing some helm lint issues.
Change-Id: I6d62bcd10c60c422aaeb146078aee1b162838926
Issue-ID: ONAPARC-450
Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com>
Diffstat (limited to 'vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml')
-rw-r--r-- | vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml | 130 |
1 files changed, 0 insertions, 130 deletions
diff --git a/vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml b/vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml deleted file mode 100644 index ae93c445..00000000 --- a/vnfs/DAaaS/applications/charts/sample-horovod-app/templates/config.yaml +++ /dev/null @@ -1,130 +0,0 @@ -{{- $workerNum := .Values.worker.number -}} -{{- $name := include "horovod.fullname" . }} -{{- $slots := 1 }} -{{- if index .Values.resources "nvidia.com/gpu" }} -{{- $slots := index .Values.resources "nvidia.com/gpu" }} -{{- end }} -apiVersion: v1 -kind: ConfigMap -metadata: - name: {{ template "horovod.fullname" . }} - labels: - heritage: {{ .Release.Service | quote }} - release: {{ .Release.Name | quote }} - chart: {{ template "horovod.chart" . }} - app: {{ template "horovod.fullname" . }} -data: - hostfile.config: | - {{ $name }}-master slots={{ $slots }} - {{- range $i, $none := until (int $workerNum) }} - {{ $name }}-{{ $i }}.{{ $name }} slots={{ $slots }} - {{- end }} - ssh.readiness: | - #!/bin/bash - set -xev - ssh localhost ls - master.run: | - #!/bin/bash - set -x - sleep 5 - - mkdir -p /root/.ssh - rm -f /root/.ssh/config - touch /root/.ssh/config - - if [ "$USESECRETS" == "true" ];then - set +e - yes | cp /etc/secret-volume/id_rsa /root/.ssh/id_rsa - yes | cp /etc/secret-volume/authorized_keys /root/.ssh/authorized_keys - set -e - fi - - if [ -n "$SSHPORT" ]; then - echo "Port $SSHPORT" > /root/.ssh/config - sed -i "s/^Port.*/Port $SSHPORT /g" /etc/ssh/sshd_config - fi - echo "StrictHostKeyChecking no" >> /root/.ssh/config - /usr/sbin/sshd - - if [ $# -eq 0 ]; then - sleep infinity - else - bash -c "$*" - fi - sleep 300 - master.waitWorkerReady: | - #!/bin/bash - set -xev - function updateSSHPort() { - mkdir -p /root/.ssh - rm -f /root/.ssh/config - touch /root/.ssh/config - - if [ -n "$SSHPORT" ]; then - echo "Port $SSHPORT" > /root/.ssh/config - echo "StrictHostKeyChecking no" >> /root/.ssh/config - fi - } - - function runCheckSSH() { - if [[ "$USESECRETS" == "true" ]];then - set +e - yes | cp /etc/secret-volume/id_rsa /root/.ssh/id_rsa - yes | cp /etc/secret-volume/authorized_keys /root/.ssh/authorized_keys - set -e - fi - - for i in `cat $1 | awk '{print $(1)}'`;do - if [[ "$i" != *"master" ]];then - retry 30 ssh -o ConnectTimeout=2 -q $i exit - fi - done - } - - function retry() - { - local n=0;local try=$1 - local cmd="${@: 2}" - [[ $# -le 1 ]] && { - echo "Usage $0 <retry_number> <Command>"; - } - set +e - until [[ $n -ge $try ]] - do - $cmd && break || { - echo "Command Fail.." - ((n++)) - echo "retry $n :: [$cmd]" - sleep 1; - } - done - $cmd - if [ $? -ne 0 ]; then - exit 1 - fi - set -e - } - updateSSHPort - runCheckSSH $1 - worker.run: | - #!/bin/bash - set -x - - mkdir -p /root/.ssh - rm -f /root/.ssh/config - touch /root/.ssh/config - - if [[ "$USESECRETS" == "true" ]];then - set +e - yes | cp /etc/secret-volume/id_rsa /root/.ssh/id_rsa - yes | cp /etc/secret-volume/authorized_keys /root/.ssh/authorized_keys - set -e - fi - - if [ -n "$SSHPORT" ]; then - echo "Port $SSHPORT" > /root/.ssh/config - sed -i "s/^Port.*/Port $SSHPORT /g" /etc/ssh/sshd_config - fi - echo "StrictHostKeyChecking no" >> /root/.ssh/config - - /usr/sbin/sshd -D |