Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ spec:
type: RuntimeDefault
containers:
- name: tekton-hub-api
image: quay.io/tekton-hub/api:v1.22.3
image: quay.io/tekton-hub/api:v1.22.5
resources:
requests:
cpu: 100m
Expand Down Expand Up @@ -206,6 +206,7 @@ spec:
timeoutSeconds: 1
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsUser: 65532
capabilities:
drop:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ spec:
type: RuntimeDefault
containers:
- name: tekton-hub-db-migration
image: quay.io/tekton-hub/db-migration:v1.22.3
image: quay.io/tekton-hub/db-migration:v1.22.5
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsUser: 65532
capabilities:
drop:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ metadata:
app.kubernetes.io/instance: default
app.kubernetes.io/part-of: tekton-hub
data:
version: v1.22.3
version: v1.22.5

---
# Copyright 2024 The Tekton Authors
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
type: RuntimeDefault
containers:
- name: tekton-hub-ui
image: quay.io/tekton-hub/ui:v1.22.3
image: quay.io/tekton-hub/ui:v1.22.5
resources:
requests:
cpu: 100m
Expand All @@ -44,10 +44,16 @@ spec:
memory: 500Mi
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsUser: 65532
capabilities:
drop:
- ALL
volumeMounts:
- name: config-volume
mountPath: /tmp/config
- name: tmp
mountPath: /tmp
env:
- name: API_URL
valueFrom:
Expand Down Expand Up @@ -100,6 +106,11 @@ spec:
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
volumes:
- name: config-volume
emptyDir: {}
- name: tmp
emptyDir: {}

---
apiVersion: v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ spec:

- Tekton Chains: v0.25.1

- Tekton Hub (tech-preview): v1.22.3
- Tekton Hub (tech-preview): v1.22.5

- Tekton Results (tech-preview): v0.16.0

Expand Down