Compare commits

..

No commits in common. "main" and "v0.0.1" have entirely different histories.
main ... v0.0.1

3 changed files with 3 additions and 20 deletions

View File

@ -6,9 +6,6 @@ resources:
- resources/svc.yaml - resources/svc.yaml
configMapGenerator: configMapGenerator:
- name: varnish-env
literals:
- VARNISH_SIZE=1G
- name: varnish-config - name: varnish-config
files: files:
- files/default.vcl - files/default.vcl

View File

@ -16,27 +16,17 @@ spec:
spec: spec:
containers: containers:
- name: varnish - name: varnish
image: reg.cadoles.com/dh/library/varnish:7.6.1-alpine image: reg.cadoles.com/dh/library/varnish:7.6.1
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
env:
- name: VARNISH_HTTP_PORT
value: "8080"
envFrom:
- configMapRef:
name: varnish-env
ports: ports:
- containerPort: 8080 - containerPort: 8080
volumeMounts: volumeMounts:
- mountPath: /etc/varnish/default.vcl - mountPath: /etc/varnish/default.vcl
name: varnish-config name: varnish-config
subPath: default.vcl subPath: default.vcl
- mountPath: /var/lib/varnish/varnishd
name: varnish-lib
securityContext: securityContext:
readOnlyRootFilesystem: true readOnlyRootFilesystem: true
allowPrivilegeEscalation: false allowPrivilegeEscalation: false
capabilities:
add: [ "IPC_LOCK" ]
volumes: volumes:
- name: varnish-config - name: varnish-config
configMap: configMap:
@ -44,9 +34,6 @@ spec:
items: items:
- key: default.vcl - key: default.vcl
path: default.vcl path: default.vcl
- name: varnish-lib
emptyDir:
sizeLimit: 1Gi
securityContext: securityContext:
runAsUser: 1000 runAsUser: 1000
runAsGroup: 1000 runAsGroup: 1000

View File

@ -6,7 +6,6 @@ spec:
selector: selector:
app: varnish app: varnish
ports: ports:
- name: varnish-http - protocol: TCP
protocol: TCP port: 80
port: 8080
targetPort: 8080 targetPort: 8080