apiVersion: v1 kind: Pod spec: containers: - name: kaniko image: gcr.io/kaniko-project/executor:debug #imagePullPolicy: Always command: - /busybox/cat tty: true resources: requests: memory: "2048M" cpu: "1000m" ephemeral-storage: "5Gi" volumeMounts: - name: docker-config mountPath: /kaniko/.docker/config.json subPath: config.json volumes: - name: docker-config secret: secretName: docker-config