Skip to content

Commit 981779b

Browse files
committed
up
1 parent 53e7b23 commit 981779b

2 files changed

Lines changed: 70 additions & 70 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ cilium install \
101101
### Step 2: Install Gateway API CRDs
102102

103103
```bash
104-
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/standard-install.yaml
105-
kubectl apply --server-side -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.0/experimental-install.yaml
104+
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.1/standard-install.yaml
105+
kubectl apply --server-side -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.4.1/experimental-install.yaml
106106
```
107107

108108
Verify Cilium:

infrastructure/controllers/pvc-plumber/deployment.yaml

Lines changed: 68 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -27,72 +27,72 @@ spec:
2727
seccompProfile:
2828
type: RuntimeDefault
2929
containers:
30-
- name: pvc-plumber
31-
image: ghcr.io/mitchross/pvc-plumber:1.1.0
32-
ports:
33-
- name: http
34-
containerPort: 8080
35-
protocol: TCP
36-
env:
37-
- name: BACKEND_TYPE
38-
value: "kopia-fs"
39-
- name: KOPIA_REPOSITORY_PATH
40-
value: "/repository"
41-
- name: LOG_LEVEL
42-
value: "info"
43-
- name: KOPIA_PASSWORD
44-
valueFrom:
45-
secretKeyRef:
46-
name: pvc-plumber-kopia
47-
key: KOPIA_PASSWORD
48-
- name: KOPIA_CONFIG_PATH
49-
value: "/tmp/kopia/config/repository.config"
50-
- name: KOPIA_LOG_DIR
51-
value: "/tmp/kopia/logs"
52-
- name: KOPIA_CACHE_DIRECTORY
53-
value: "/tmp/kopia/cache"
54-
- name: HOME
55-
value: "/tmp"
56-
- name: USER
57-
value: "plumber"
58-
securityContext:
59-
allowPrivilegeEscalation: false
60-
readOnlyRootFilesystem: false
61-
capabilities:
62-
drop:
63-
- ALL
64-
resources:
65-
requests:
66-
cpu: 10m
67-
memory: 128Mi
68-
limits:
69-
cpu: 500m
70-
memory: 512Mi
71-
livenessProbe:
72-
httpGet:
73-
path: /healthz
74-
port: http
75-
initialDelaySeconds: 10
76-
periodSeconds: 30
77-
readinessProbe:
78-
httpGet:
79-
path: /readyz
80-
port: http
81-
initialDelaySeconds: 10
82-
periodSeconds: 10
83-
volumeMounts:
84-
- name: repository
85-
mountPath: /repository
86-
readOnly: false
87-
- name: kopia-tmp
88-
mountPath: /tmp/kopia
89-
volumes:
30+
- name: pvc-plumber
31+
image: ghcr.io/mitchross/pvc-plumber:1.1.0
32+
ports:
33+
- name: http
34+
containerPort: 8080
35+
protocol: TCP
36+
env:
37+
- name: BACKEND_TYPE
38+
value: "kopia-fs"
39+
- name: KOPIA_REPOSITORY_PATH
40+
value: "/repository"
41+
- name: LOG_LEVEL
42+
value: "info"
43+
- name: KOPIA_PASSWORD
44+
valueFrom:
45+
secretKeyRef:
46+
name: pvc-plumber-kopia
47+
key: KOPIA_PASSWORD
48+
- name: KOPIA_CONFIG_PATH
49+
value: "/tmp/kopia/config/repository.config"
50+
- name: KOPIA_LOG_DIR
51+
value: "/tmp/kopia/logs"
52+
- name: KOPIA_CACHE_DIRECTORY
53+
value: "/tmp/kopia/cache"
54+
- name: HOME
55+
value: "/tmp"
56+
- name: USER
57+
value: "plumber"
58+
securityContext:
59+
allowPrivilegeEscalation: false
60+
readOnlyRootFilesystem: false
61+
capabilities:
62+
drop:
63+
- ALL
64+
resources:
65+
requests:
66+
cpu: 10m
67+
memory: 128Mi
68+
limits:
69+
cpu: 500m
70+
memory: 512Mi
71+
livenessProbe:
72+
httpGet:
73+
path: /healthz
74+
port: http
75+
initialDelaySeconds: 10
76+
periodSeconds: 30
77+
readinessProbe:
78+
httpGet:
79+
path: /readyz
80+
port: http
81+
initialDelaySeconds: 10
82+
periodSeconds: 10
83+
volumeMounts:
9084
- name: repository
91-
nfs:
92-
server: 192.168.10.133
93-
path: /mnt/BigTank/k8s/volsync-kopia-nfs
85+
mountPath: /repository
86+
readOnly: false
9487
- name: kopia-tmp
95-
emptyDir: {}
88+
mountPath: /tmp/kopia
89+
volumes:
90+
- name: repository
91+
nfs:
92+
server: 192.168.10.133
93+
path: /mnt/BigTank/k8s/volsync-kopia-nfs
94+
- name: kopia-tmp
95+
emptyDir: {}
9696
---
9797
apiVersion: v1
9898
kind: Service
@@ -108,7 +108,7 @@ spec:
108108
selector:
109109
app.kubernetes.io/name: pvc-plumber
110110
ports:
111-
- name: http
112-
port: 80
113-
targetPort: http
114-
protocol: TCP
111+
- name: http
112+
port: 80
113+
targetPort: http
114+
protocol: TCP

0 commit comments

Comments
 (0)