Files
argocd-apps/apps/base/artifactapi/ui-deployment.yaml
T
unkinben 9f87de736c
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/kubeconform Pipeline was successful
chore(artifactapi): deploy v3.7.3
Bumps the API and UI images from v3.6.5 to v3.7.3 so the au-syd1 cluster
picks up the recent fixes: local-repo files now appear in the cached-objects
UI, evicting a local RPM prunes its repodata metadata, and the bare domain
redirects to the web UI.

- api-deployment: artifactapi v3.6.5 -> v3.7.3
- ui-deployment: artifactapi-ui v3.6.5 -> v3.7.3
2026-07-03 15:09:23 +10:00

59 lines
1.3 KiB
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ui
namespace: artifactapi
annotations:
reloader.stakater.com/auto: "true"
spec:
selector:
matchLabels:
app: ui
strategy:
rollingUpdate:
maxUnavailable: 1
type: RollingUpdate
template:
metadata:
labels:
app: ui
spec:
automountServiceAccountToken: true
containers:
- name: ui
image: git.unkin.net/unkin/artifactapi-ui:v3.7.3
imagePullPolicy: IfNotPresent
ports:
- containerPort: 80
name: http
protocol: TCP
livenessProbe:
failureThreshold: 3
httpGet:
path: /ui
port: http
scheme: HTTP
initialDelaySeconds: 15
periodSeconds: 30
successThreshold: 1
timeoutSeconds: 5
readinessProbe:
failureThreshold: 3
httpGet:
path: /ui
port: http
scheme: HTTP
initialDelaySeconds: 5
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 5
resources:
limits:
cpu: 500m
memory: 512Mi
requests:
cpu: 50m
memory: 128Mi
restartPolicy: Always