redaction (#1)
Add the redacted source file for demo purposes Reviewed-on: https://source.michaeldileo.org/michael_dileo/Keybard-Vagabond-Demo/pulls/1 Co-authored-by: Michael DiLeo <michael_dileo@proton.me> Co-committed-by: Michael DiLeo <michael_dileo@proton.me>
This commit was merged in pull request #1.
This commit is contained in:
58
manifests/applications/blorp/deployment.yaml
Normal file
58
manifests/applications/blorp/deployment.yaml
Normal file
@@ -0,0 +1,58 @@
|
||||
---
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: blorp
|
||||
namespace: blorp-application
|
||||
labels:
|
||||
app.kubernetes.io/name: blorp
|
||||
app.kubernetes.io/component: web
|
||||
spec:
|
||||
replicas: 2
|
||||
selector:
|
||||
matchLabels:
|
||||
app.kubernetes.io/name: blorp
|
||||
app.kubernetes.io/component: web
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/name: blorp
|
||||
app.kubernetes.io/component: web
|
||||
spec:
|
||||
containers:
|
||||
- name: blorp
|
||||
image: ghcr.io/blorp-labs/blorp:latest
|
||||
imagePullPolicy: Always
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: http
|
||||
env:
|
||||
- name: REACT_APP_NAME
|
||||
value: "Blorp"
|
||||
- name: REACT_APP_DEFAULT_INSTANCE
|
||||
value: "https://piefed.keyboardvagabond.com,https://lemmy.world,https://lemmy.zip,https://piefed.social"
|
||||
- name: REACT_APP_LOCK_TO_DEFAULT_INSTANCE
|
||||
value: "0"
|
||||
- name: REACT_APP_INSTANCE_SELECTION_MODE
|
||||
value: "default_first"
|
||||
resources:
|
||||
requests:
|
||||
cpu: 50m
|
||||
memory: 64Mi
|
||||
limits:
|
||||
cpu: 200m
|
||||
memory: 128Mi
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 80
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 30
|
||||
timeoutSeconds: 5
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /
|
||||
port: 80
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
timeoutSeconds: 3
|
||||
Reference in New Issue
Block a user