Automated Manifest Update (#2259)
This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2259 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 #2259.
This commit is contained in:
82
clusters/cl01tl/manifests/booklore/Deployment-booklore.yaml
Normal file
82
clusters/cl01tl/manifests/booklore/Deployment-booklore.yaml
Normal file
@@ -0,0 +1,82 @@
|
||||
---
|
||||
# Source: booklore/charts/booklore/templates/common.yaml
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: booklore
|
||||
labels:
|
||||
app.kubernetes.io/controller: main
|
||||
app.kubernetes.io/instance: booklore
|
||||
app.kubernetes.io/managed-by: Helm
|
||||
app.kubernetes.io/name: booklore
|
||||
helm.sh/chart: booklore-4.4.0
|
||||
namespace: booklore
|
||||
spec:
|
||||
revisionHistoryLimit: 3
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/controller: main
|
||||
app.kubernetes.io/name: booklore
|
||||
app.kubernetes.io/instance: booklore
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/controller: main
|
||||
app.kubernetes.io/instance: booklore
|
||||
app.kubernetes.io/name: booklore
|
||||
spec:
|
||||
enableServiceLinks: false
|
||||
serviceAccountName: default
|
||||
automountServiceAccountToken: true
|
||||
hostIPC: false
|
||||
hostNetwork: false
|
||||
hostPID: false
|
||||
dnsPolicy: ClusterFirst
|
||||
containers:
|
||||
- env:
|
||||
- name: TZ
|
||||
value: America/Chicago
|
||||
- name: DATABASE_URL
|
||||
value: jdbc:mariadb://booklore-mariadb-cluster-primary.booklore:3306/booklore
|
||||
- name: DATABASE_USERNAME
|
||||
value: booklore
|
||||
- name: DATABASE_PASSWORD
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
key: password
|
||||
name: booklore-database-secret
|
||||
- name: BOOKLORE_PORT
|
||||
value: "6060"
|
||||
- name: SWAGGER_ENABLED
|
||||
value: "false"
|
||||
image: ghcr.io/booklore-app/booklore:v1.13.1
|
||||
imagePullPolicy: IfNotPresent
|
||||
name: main
|
||||
resources:
|
||||
requests:
|
||||
cpu: 50m
|
||||
memory: 128Mi
|
||||
volumeMounts:
|
||||
- mountPath: /bookdrop
|
||||
name: books-import
|
||||
- mountPath: /app/data
|
||||
name: config
|
||||
- mountPath: /data
|
||||
name: data
|
||||
- mountPath: /bookdrop/ingest
|
||||
name: ingest
|
||||
volumes:
|
||||
- emptyDir: {}
|
||||
name: books-import
|
||||
- name: config
|
||||
persistentVolumeClaim:
|
||||
claimName: booklore-config
|
||||
- name: data
|
||||
persistentVolumeClaim:
|
||||
claimName: booklore-data
|
||||
- name: ingest
|
||||
persistentVolumeClaim:
|
||||
claimName: booklore-books-import-nfs-storage
|
||||
Reference in New Issue
Block a user