apiVersion: v1
kind: Pod
metadata:
  name: honeyui-react-infra
spec:
  containers:
    - name: kaniko
      # This tag was chosen at random just to stop us from getting random regressions.
      # Feel free to update when excitable.
      # You need to use the debug tag because we run cat to keep
      # The pod alive while the kaniko is run manually.
      image: gcr.io/kaniko-project/executor@sha256:9032eceeecf018328d3582324e982cdf7d6e022891801e62c0ad593f0209b442
      #imagePullPolicy: Always
      command:
      - /busybox/cat
      tty: true
      resources:
          requests:
            memory: "1Gi"
            cpu: "1500m"
          limits:
            memory: "2Gi"
            cpu: "3000m"
