美文网首页
deployment 容器启动命令配置

deployment 容器启动命令配置

作者: for笑 | 来源:发表于2023-11-30 16:44 被阅读0次

              image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"

              imagePullPolicy: {{ .Values.image.pullPolicy }}

              command:

              - /bin/sh

              - -ce

              - tail -f /dev/null

              image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"

              imagePullPolicy: {{ .Values.image.pullPolicy }}

              command: ["/bin/bash"]

              args:

                [

                  "-c",

                  "tail -f /dev/null"

                ]

    相关文章

      网友评论

          本文标题:deployment 容器启动命令配置

          本文链接:https://www.haomeiwen.com/subject/umpqgdtx.html