diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-18 11:20:04 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-18 11:20:04 +0200 |
commit | 9e3aff2e2a88f7b95b4c785a1af6084c09621d53 (patch) | |
tree | 56330c2110a23c7b01233025b58c668f9e243bf1 /yaml/services/postgres.yaml | |
parent | 64a6d5dd87f892536d9b52350fd30e66c722ed8a (diff) |
Reorganize files in folders
Diffstat (limited to 'yaml/services/postgres.yaml')
-rw-r--r-- | yaml/services/postgres.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/yaml/services/postgres.yaml b/yaml/services/postgres.yaml new file mode 100644 index 0000000..ad3b969 --- /dev/null +++ b/yaml/services/postgres.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: postgres-service +spec: + ports: + - port: 5432 + targetPort: 5432 + selector: + app: postgres + type: ClusterIP |