Last active
June 20, 2023 19:50
-
-
Save ThomasVitale/c53aa9b9a141e651aecf25272493c6ce to your computer and use it in GitHub Desktop.
Tekton kbld issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: tekton-pipelines-controller | |
namespace: tekton-pipelines | |
spec: | |
selector: | |
matchLabels: | |
app.kubernetes.io/name: controller | |
app.kubernetes.io/component: controller | |
app.kubernetes.io/instance: default | |
app.kubernetes.io/part-of: tekton-pipelines | |
template: | |
metadata: | |
labels: | |
app.kubernetes.io/name: controller | |
app.kubernetes.io/component: controller | |
app.kubernetes.io/instance: default | |
app.kubernetes.io/version: "v0.48.0" | |
app.kubernetes.io/part-of: tekton-pipelines | |
spec: | |
serviceAccountName: tekton-pipelines-controller | |
containers: | |
- name: tekton-pipelines-controller | |
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/controller:v0.48.0@sha256:c2442a0f832ce36afd1b2a7a2d971a30be4aae92ebc384c8ee24f073688bc61e | |
args: [ | |
# These images are built on-demand by `ko resolve` and are replaced | |
# by image references by digest. | |
"-entrypoint-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/entrypoint:v0.48.0@sha256:6ea5a0dd712b1c2204473fbf809432c31df8f062135f84c6ccf02d37cdfd9e76", | |
"-nop-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/nop:v0.48.0@sha256:3fdf8f51abaaf2b2cb3f583545c83204c7948f44d5bc3badffb322355e42caaa", | |
"-sidecarlogresults-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/sidecarlogresults:v0.48.0@sha256:1bb043c7f27598de1e5a632b54ccff45a05aac420005298f3b50c4ec4cbf1f96", | |
"-workingdirinit-image", "gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/workingdirinit:v0.48.0@sha256:4b2917f4c4a429a10c2828b6ff8eb8e94ffa8eb321375294632c1467cf2de61d", | |
# The shell image must allow root in order to create directories and copy files to PVCs. | |
# cgr.dev/chainguard/busybox as of April 14 2022 | |
# image shall not contains tag, so it will be supported on a runtime like cri-o | |
"-shell-image", "cgr.dev/chainguard/busybox@sha256:19f02276bf8dbdd62f069b922f10c65262cc34b710eea26ff928129a736be791", | |
# for script mode to work with windows we need a powershell image | |
# pinning to nanoserver tag as of July 15 2021 | |
"-shell-image-win", "mcr.microsoft.com/powershell:nanoserver@sha256:b6d5ff841b78bdf2dfed7550000fd4f3437385b8fa686ec0f010be24777654d6"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment