pipelines
Some checks failed
CI/CD Pipeline / build (push) Failing after 4s

This commit is contained in:
2026-03-06 16:49:59 -07:00
parent 181c6ca84b
commit 84261d4747
6 changed files with 191 additions and 1 deletions

34
kubernetes/services.yml Normal file
View File

@@ -0,0 +1,34 @@
apiVersion: v1
kind: Namespace
metadata:
name: ai-ha-elixir
---
apiVersion: v1
kind: Service
metadata:
name: ai-ha-elixir-headless
namespace: ai-ha-elixir
spec:
clusterIP: None
selector:
app: ai-ha-elixir
ports:
- name: http
port: 4000
- name: epmd
port: 4369
- name: beam
port: 9000
---
apiVersion: v1
kind: Service
metadata:
name: ai-ha-elixir
namespace: ai-ha-elixir
spec:
selector:
app: ai-ha-elixir
ports:
- name: http
port: 80
targetPort: 4000