Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added the svg containing a map of the chaosdorf #106

Merged
merged 8 commits into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/inventory/chaosdorf.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 3 additions & 3 deletions apps/inventory/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: apps/v1

Check warning on line 1 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

1:1 [document-start] missing document start "---"

Check warning on line 1 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

1:1 [document-start] missing document start "---"
kind: Deployment
metadata:
name: inventory
Expand All @@ -16,19 +16,19 @@
app: inventory
spec:
initContainers:
- name: copy-app

Check failure on line 19 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

19:7 [indentation] wrong indentation: expected 8 but found 6

Check failure on line 19 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

19:7 [indentation] wrong indentation: expected 8 but found 6
image: registry.chaosdorf.space/inventory:20240419
command:
image: registry.chaosdorf.space/inventory:20240619
command:
- 'sh'

Check failure on line 22 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

22:9 [indentation] wrong indentation: expected 10 but found 8

Check failure on line 22 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

22:9 [indentation] wrong indentation: expected 10 but found 8
- '-c'
- "cp -rf /app/* /volume/"
volumeMounts:
- name: data

Check failure on line 26 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

26:9 [indentation] wrong indentation: expected 10 but found 8

Check failure on line 26 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

26:9 [indentation] wrong indentation: expected 10 but found 8
mountPath: "/volume"
readOnly: false
containers:
- name: inventory

Check failure on line 30 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

30:7 [indentation] wrong indentation: expected 8 but found 6

Check failure on line 30 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

30:7 [indentation] wrong indentation: expected 8 but found 6
image: registry.chaosdorf.space/inventory:20240419
image: registry.chaosdorf.space/inventory:20240619
resources:
limits:
cpu: 250m
Expand All @@ -37,13 +37,13 @@
cpu: 50m
memory: 512M
ports:
- containerPort: 8000

Check failure on line 40 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

40:9 [indentation] wrong indentation: expected 10 but found 8

Check failure on line 40 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

40:9 [indentation] wrong indentation: expected 10 but found 8
name: web
volumeMounts:
- name: data

Check failure on line 43 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

43:9 [indentation] wrong indentation: expected 10 but found 8

Check failure on line 43 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

43:9 [indentation] wrong indentation: expected 10 but found 8
mountPath: "/app"
readOnly: false
volumes:
- name: data

Check failure on line 47 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

47:7 [indentation] wrong indentation: expected 8 but found 6

Check failure on line 47 in apps/inventory/deployment.yaml

View workflow job for this annotation

GitHub Actions / Christian Linter

47:7 [indentation] wrong indentation: expected 8 but found 6
persistentVolumeClaim:
claimName: inventory-data
Loading