This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore(k8s): add notella deployment

+64
+59
kubernetes/notella/deployment.yaml
··· 1 + apiVersion: apps/v1 2 + kind: Deployment 3 + metadata: 4 + name: churros-notella 5 + spec: 6 + template: 7 + spec: 8 + affinity: 9 + podAntiAffinity: 10 + preferredDuringSchedulingIgnoredDuringExecution: 11 + - weight: 1 12 + podAffinityTerm: 13 + topologyKey: 'kubernetes.io/hostname' 14 + labelSelector: 15 + matchLabels: 16 + app: churros-notella 17 + containers: 18 + - image: registry.inpt.fr/churros/notella:latest 19 + imagePullPolicy: IfNotPresent 20 + name: api 21 + readinessProbe: 22 + initialDelaySeconds: 5 23 + periodSeconds: 10 24 + httpGet: 25 + scheme: HTTP 26 + path: / 27 + port: 4000 28 + resources: 29 + requests: 30 + memory: '512Mi' 31 + cpu: '300m' 32 + limits: 33 + memory: '1024Mi' 34 + cpu: '800m' 35 + env: 36 + - name: DATABASE_BASE_URL 37 + valueFrom: 38 + secretKeyRef: 39 + name: churros-postgresql-app 40 + key: uri 41 + - name: DATABASE_URL 42 + value: $(DATABASE_BASE_URL)?pool_timeout=60 43 + envFrom: 44 + - configMapRef: 45 + name: churros-config 46 + - secretRef: 47 + name: churros-secrets 48 + initContainers: 49 + - image: churros.inpt.fr/churros/churros/prisma:latest 50 + name: migrator 51 + imagePullPolicy: IfNotPresent 52 + env: 53 + - name: DATABASE_BASE_URL 54 + valueFrom: 55 + secretKeyRef: 56 + name: churros-postgresql-app 57 + key: uri 58 + - name: DATABASE_URL 59 + value: $(DATABASE_BASE_URL)?pool_timeout=60
+5
kubernetes/notella/kustomization.yaml
··· 1 + commonLabels: 2 + app: notella 3 + 4 + resources: 5 + - deployment.yaml