- Add K8s on-disk installation configuration yaml files to extend the SCDF k8s on-disk installation. - Add K8s on-disk installation configuration yaml files to extend the SCDF k8s Helm installation. - Add AlertWebhookReciver Spring Boot app. - Publish the webhook app to springcloud DockerHub
15 lines
331 B
YAML
15 lines
331 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: alertwebhook
|
|
labels:
|
|
app: alertwebhook
|
|
spec:
|
|
# If you are running k8s on a local dev box, using minikube, or Kubernetes on docker desktop you can use type NodePort instead
|
|
type: LoadBalancer
|
|
ports:
|
|
- port: 8085
|
|
targetPort: 8085
|
|
selector:
|
|
app: alertwebhook
|