diff options
author | Santo Cariotti <santo@dcariotti.me> | 2025-01-15 16:21:40 +0100 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2025-01-15 16:21:40 +0100 |
commit | a51ba5d4857b6ceabf87482948a89667d9b58362 (patch) | |
tree | f76f0c7d78773b9a29819bd042237239ab73543c /yaml/services/frontend.yaml | |
parent | f9f13898263aff70af604314904c4bddd57fd05f (diff) |
Add frontend
Diffstat (limited to 'yaml/services/frontend.yaml')
-rw-r--r-- | yaml/services/frontend.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/yaml/services/frontend.yaml b/yaml/services/frontend.yaml new file mode 100644 index 0000000..f5580ae --- /dev/null +++ b/yaml/services/frontend.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: frontend-service +spec: + ports: + - port: 80 + targetPort: 80 + selector: + app: frontend-app + type: ClusterIP |