Automated Manifest Update (#2910)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2910 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
This commit was merged in pull request #2910.
This commit is contained in:
@@ -10,7 +10,7 @@ metadata:
|
|||||||
namespace: garage
|
namespace: garage
|
||||||
data:
|
data:
|
||||||
garage.toml: |
|
garage.toml: |
|
||||||
replication_factor = 1
|
replication_factor = 3
|
||||||
|
|
||||||
metadata_dir = "/var/lib/garage/meta"
|
metadata_dir = "/var/lib/garage/meta"
|
||||||
data_dir = "/var/lib/garage/data"
|
data_dir = "/var/lib/garage/data"
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
apiVersion: apps/v1
|
apiVersion: apps/v1
|
||||||
kind: Deployment
|
kind: Deployment
|
||||||
metadata:
|
metadata:
|
||||||
name: garage-main
|
name: garage-server-1
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/controller: main
|
app.kubernetes.io/controller: server-1
|
||||||
app.kubernetes.io/instance: garage
|
app.kubernetes.io/instance: garage
|
||||||
app.kubernetes.io/managed-by: Helm
|
app.kubernetes.io/managed-by: Helm
|
||||||
app.kubernetes.io/name: garage
|
app.kubernetes.io/name: garage
|
||||||
@@ -16,17 +16,18 @@ spec:
|
|||||||
type: Recreate
|
type: Recreate
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
app.kubernetes.io/controller: main
|
app.kubernetes.io/controller: server-1
|
||||||
app.kubernetes.io/name: garage
|
app.kubernetes.io/name: garage
|
||||||
app.kubernetes.io/instance: garage
|
app.kubernetes.io/instance: garage
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
checksum/configMaps: aecb65cb46684688a356974d7ecaec4abb2d4fed3f71863780e7f35505c7af02
|
checksum/configMaps: 222a823b4d415557153f5025ab461945265a16cbb7a39b759091687596c24c29
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/controller: main
|
app.kubernetes.io/controller: server-1
|
||||||
app.kubernetes.io/instance: garage
|
app.kubernetes.io/instance: garage
|
||||||
app.kubernetes.io/name: garage
|
app.kubernetes.io/name: garage
|
||||||
|
garage-type: server
|
||||||
spec:
|
spec:
|
||||||
enableServiceLinks: false
|
enableServiceLinks: false
|
||||||
serviceAccountName: default
|
serviceAccountName: default
|
||||||
@@ -35,29 +36,17 @@ spec:
|
|||||||
hostNetwork: false
|
hostNetwork: false
|
||||||
hostPID: false
|
hostPID: false
|
||||||
dnsPolicy: ClusterFirst
|
dnsPolicy: ClusterFirst
|
||||||
|
affinity:
|
||||||
|
podAntiAffinity:
|
||||||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- labelSelector:
|
||||||
|
matchExpressions:
|
||||||
|
- key: garage-type
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- server
|
||||||
|
topologyKey: kubernetes.io/hostname
|
||||||
containers:
|
containers:
|
||||||
- command:
|
|
||||||
- sleep
|
|
||||||
- infinity
|
|
||||||
image: ubuntu:resolute-20251208
|
|
||||||
imagePullPolicy: IfNotPresent
|
|
||||||
name: debug
|
|
||||||
resources:
|
|
||||||
requests:
|
|
||||||
cpu: 10m
|
|
||||||
memory: 32Mi
|
|
||||||
volumeMounts:
|
|
||||||
- mountPath: /etc/garage.toml
|
|
||||||
mountPropagation: None
|
|
||||||
name: config
|
|
||||||
readOnly: true
|
|
||||||
subPath: garage.toml
|
|
||||||
- mountPath: /var/lib/garage/data
|
|
||||||
name: data
|
|
||||||
- mountPath: /var/lib/garage/meta
|
|
||||||
name: db
|
|
||||||
- mountPath: /var/lib/garage/snapshots
|
|
||||||
name: snapshots
|
|
||||||
- envFrom:
|
- envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
name: garage-token-secret
|
name: garage-token-secret
|
||||||
@@ -75,19 +64,19 @@ spec:
|
|||||||
readOnly: true
|
readOnly: true
|
||||||
subPath: garage.toml
|
subPath: garage.toml
|
||||||
- mountPath: /var/lib/garage/data
|
- mountPath: /var/lib/garage/data
|
||||||
name: data
|
name: data-1
|
||||||
- mountPath: /var/lib/garage/meta
|
- mountPath: /var/lib/garage/meta
|
||||||
name: db
|
name: db-1
|
||||||
- mountPath: /var/lib/garage/snapshots
|
- mountPath: /var/lib/garage/snapshots
|
||||||
name: snapshots
|
name: snapshots
|
||||||
volumes:
|
volumes:
|
||||||
- configMap:
|
- configMap:
|
||||||
name: garage
|
name: garage
|
||||||
name: config
|
name: config
|
||||||
- name: data
|
- name: data-1
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: garage-data
|
claimName: garage-data
|
||||||
- name: db
|
- name: db-1
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
claimName: garage-db
|
claimName: garage-db
|
||||||
- name: snapshots
|
- name: snapshots
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: garage-server-2
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/controller: server-2
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
helm.sh/chart: garage-4.5.0
|
||||||
|
namespace: garage
|
||||||
|
spec:
|
||||||
|
revisionHistoryLimit: 3
|
||||||
|
replicas: 1
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/controller: server-2
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
checksum/configMaps: 222a823b4d415557153f5025ab461945265a16cbb7a39b759091687596c24c29
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/controller: server-2
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
garage-type: server
|
||||||
|
spec:
|
||||||
|
enableServiceLinks: false
|
||||||
|
serviceAccountName: default
|
||||||
|
automountServiceAccountToken: true
|
||||||
|
hostIPC: false
|
||||||
|
hostNetwork: false
|
||||||
|
hostPID: false
|
||||||
|
dnsPolicy: ClusterFirst
|
||||||
|
affinity:
|
||||||
|
podAntiAffinity:
|
||||||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- labelSelector:
|
||||||
|
matchExpressions:
|
||||||
|
- key: garage-type
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- server
|
||||||
|
topologyKey: kubernetes.io/hostname
|
||||||
|
containers:
|
||||||
|
- envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: garage-token-secret
|
||||||
|
image: dxflrs/garage:v2.1.0
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
name: main
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 128Mi
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /etc/garage.toml
|
||||||
|
mountPropagation: None
|
||||||
|
name: config
|
||||||
|
readOnly: true
|
||||||
|
subPath: garage.toml
|
||||||
|
volumes:
|
||||||
|
- configMap:
|
||||||
|
name: garage
|
||||||
|
name: config
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: garage-server-3
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/controller: server-3
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
helm.sh/chart: garage-4.5.0
|
||||||
|
namespace: garage
|
||||||
|
spec:
|
||||||
|
revisionHistoryLimit: 3
|
||||||
|
replicas: 1
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/controller: server-3
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
checksum/configMaps: 222a823b4d415557153f5025ab461945265a16cbb7a39b759091687596c24c29
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/controller: server-3
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
garage-type: server
|
||||||
|
spec:
|
||||||
|
enableServiceLinks: false
|
||||||
|
serviceAccountName: default
|
||||||
|
automountServiceAccountToken: true
|
||||||
|
hostIPC: false
|
||||||
|
hostNetwork: false
|
||||||
|
hostPID: false
|
||||||
|
dnsPolicy: ClusterFirst
|
||||||
|
affinity:
|
||||||
|
podAntiAffinity:
|
||||||
|
requiredDuringSchedulingIgnoredDuringExecution:
|
||||||
|
- labelSelector:
|
||||||
|
matchExpressions:
|
||||||
|
- key: garage-type
|
||||||
|
operator: In
|
||||||
|
values:
|
||||||
|
- server
|
||||||
|
topologyKey: kubernetes.io/hostname
|
||||||
|
containers:
|
||||||
|
- envFrom:
|
||||||
|
- secretRef:
|
||||||
|
name: garage-token-secret
|
||||||
|
image: dxflrs/garage:v2.1.0
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
name: main
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 10m
|
||||||
|
memory: 128Mi
|
||||||
|
volumeMounts:
|
||||||
|
- mountPath: /etc/garage.toml
|
||||||
|
mountPropagation: None
|
||||||
|
name: config
|
||||||
|
readOnly: true
|
||||||
|
subPath: garage.toml
|
||||||
|
volumes:
|
||||||
|
- configMap:
|
||||||
|
name: garage
|
||||||
|
name: config
|
||||||
@@ -22,7 +22,7 @@ spec:
|
|||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
annotations:
|
annotations:
|
||||||
checksum/configMaps: aecb65cb46684688a356974d7ecaec4abb2d4fed3f71863780e7f35505c7af02
|
checksum/configMaps: 222a823b4d415557153f5025ab461945265a16cbb7a39b759091687596c24c29
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/controller: webui
|
app.kubernetes.io/controller: webui
|
||||||
app.kubernetes.io/instance: garage
|
app.kubernetes.io/instance: garage
|
||||||
|
|||||||
34
clusters/cl01tl/manifests/garage/Service-garage-2.yaml
Normal file
34
clusters/cl01tl/manifests/garage/Service-garage-2.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: garage-2
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
app.kubernetes.io/service: garage-2
|
||||||
|
helm.sh/chart: garage-4.5.0
|
||||||
|
namespace: garage
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 3903
|
||||||
|
targetPort: 3903
|
||||||
|
protocol: TCP
|
||||||
|
name: admin
|
||||||
|
- port: 3901
|
||||||
|
targetPort: 3901
|
||||||
|
protocol: TCP
|
||||||
|
name: rpc
|
||||||
|
- port: 3900
|
||||||
|
targetPort: 3900
|
||||||
|
protocol: TCP
|
||||||
|
name: s3
|
||||||
|
- port: 3902
|
||||||
|
targetPort: 3902
|
||||||
|
protocol: TCP
|
||||||
|
name: web
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/controller: server-2
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
34
clusters/cl01tl/manifests/garage/Service-garage-3.yaml
Normal file
34
clusters/cl01tl/manifests/garage/Service-garage-3.yaml
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: garage-3
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/managed-by: Helm
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
|
app.kubernetes.io/service: garage-3
|
||||||
|
helm.sh/chart: garage-4.5.0
|
||||||
|
namespace: garage
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 3903
|
||||||
|
targetPort: 3903
|
||||||
|
protocol: TCP
|
||||||
|
name: admin
|
||||||
|
- port: 3901
|
||||||
|
targetPort: 3901
|
||||||
|
protocol: TCP
|
||||||
|
name: rpc
|
||||||
|
- port: 3900
|
||||||
|
targetPort: 3900
|
||||||
|
protocol: TCP
|
||||||
|
name: s3
|
||||||
|
- port: 3902
|
||||||
|
targetPort: 3902
|
||||||
|
protocol: TCP
|
||||||
|
name: web
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/controller: server-3
|
||||||
|
app.kubernetes.io/instance: garage
|
||||||
|
app.kubernetes.io/name: garage
|
||||||
@@ -29,6 +29,6 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
name: web
|
name: web
|
||||||
selector:
|
selector:
|
||||||
app.kubernetes.io/controller: main
|
app.kubernetes.io/controller: server-1
|
||||||
app.kubernetes.io/instance: garage
|
app.kubernetes.io/instance: garage
|
||||||
app.kubernetes.io/name: garage
|
app.kubernetes.io/name: garage
|
||||||
|
|||||||
Reference in New Issue
Block a user