new folders, website manifest init

This commit is contained in:
Steffen Illium 2024-03-27 11:25:15 +01:00
parent daf70117e8
commit ae12eb00f7
3 changed files with 31 additions and 1 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
kubedeploy.code-workspace

View File

@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}

22
projects/website.yaml Normal file
View File

@ -0,0 +1,22 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: website-deployment
labels:
app: website
spec:
replicas: 1
selector:
matchLabels:
app: website
template:
metadata:
labels:
app: website
spec:
nodeName: gatekeeper
containers:
- name: website
image: registry.steffenillium.de/website
ports:
- containerPort: 80