Initial release
This commit is contained in:
@@ -0,0 +1,115 @@
|
||||
# Copyright 2022 The Tekton Authors
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: tekton-pipelines-remote-resolvers
|
||||
namespace: tekton-pipelines-resolvers
|
||||
labels:
|
||||
app.kubernetes.io/name: resolvers
|
||||
app.kubernetes.io/component: resolvers
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/version: "v0.57.0"
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
# tekton.dev/release value replaced with inputs.params.versionTag in pipeline/tekton/publish.yaml
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
# labels below are related to istio and should not be used for resource lookup
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: resolvers
|
||||
app.kubernetes.io/component: resolvers
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: resolvers
|
||||
app.kubernetes.io/component: resolvers
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/version: "v0.57.0"
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
# tekton.dev/release value replaced with inputs.params.versionTag in pipeline/tekton/publish.yaml
|
||||
pipeline.tekton.dev/release: "v0.57.0"
|
||||
# labels below are related to istio and should not be used for resource lookup
|
||||
app: tekton-pipelines-resolvers
|
||||
version: "v0.57.0"
|
||||
spec:
|
||||
affinity:
|
||||
podAntiAffinity:
|
||||
preferredDuringSchedulingIgnoredDuringExecution:
|
||||
- podAffinityTerm:
|
||||
labelSelector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: resolvers
|
||||
app.kubernetes.io/component: resolvers
|
||||
app.kubernetes.io/instance: default
|
||||
app.kubernetes.io/part-of: tekton-pipelines
|
||||
topologyKey: kubernetes.io/hostname
|
||||
weight: 100
|
||||
serviceAccountName: tekton-pipelines-resolvers
|
||||
containers:
|
||||
- name: controller
|
||||
image: gcr.io/tekton-releases/github.com/tektoncd/pipeline/cmd/resolvers:v0.57.0@sha256:6c1baec70338f75cffc91a7baff70b45bcd6078abca6400f890b45886da96e45
|
||||
resources:
|
||||
requests:
|
||||
cpu: 100m
|
||||
memory: 100Mi
|
||||
limits:
|
||||
cpu: 1000m
|
||||
memory: 4Gi
|
||||
ports:
|
||||
- name: metrics
|
||||
containerPort: 9090
|
||||
- name: profiling
|
||||
containerPort: 8008
|
||||
# This must match the value of the environment variable PROBES_PORT.
|
||||
- name: probes
|
||||
containerPort: 8080
|
||||
env:
|
||||
- name: SYSTEM_NAMESPACE
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
fieldPath: metadata.namespace
|
||||
# If you are changing these names, you will also need to update
|
||||
# the controller's Role in 200-role.yaml to include the new
|
||||
# values in the "configmaps" "get" rule.
|
||||
- name: CONFIG_LOGGING_NAME
|
||||
value: config-logging
|
||||
- name: CONFIG_OBSERVABILITY_NAME
|
||||
value: config-observability
|
||||
- name: CONFIG_FEATURE_FLAGS_NAME
|
||||
value: feature-flags
|
||||
- name: CONFIG_LEADERELECTION_NAME
|
||||
value: config-leader-election-resolvers
|
||||
- name: METRICS_DOMAIN
|
||||
value: tekton.dev/resolution
|
||||
- name: PROBES_PORT
|
||||
value: "8080"
|
||||
# Override this env var to set a private hub api endpoint
|
||||
- name: ARTIFACT_HUB_API
|
||||
value: "https://artifacthub.io/"
|
||||
- name: TEKTON_HUB_API
|
||||
value: "https://api.hub.tekton.dev/"
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: false
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
capabilities:
|
||||
drop:
|
||||
- "ALL"
|
||||
seccompProfile:
|
||||
type: RuntimeDefault
|
||||
Reference in New Issue
Block a user