Skip to main content

HTTP Ingress

HTTP Ingress Overview

For each Project deployed on CloudFlow, we deploy an HTTP Ingress, so the Project will accept inbound HTTP traffic from the Internet.

View or Modify HTTP Ingress

To view or modify the HTTP Ingress controller for your CloudFlow Project, view the Kubernetes Service we deploy for your Project with the specific name of ingress-upstream.

Settings

Use the K8s Dashboard we provide or Kubectl to deploy or modify the Service Project if you wish to change items such as the Port your Application needs to communicate with the upstream Ingress.

http-ingress.yaml
apiVersion: v1
kind: Service
metadata:
labels:
app: ingress-upstream
name: ingress-upstream
namespace: default
spec:
ports:
- name: 80-8080
port: 80
protocol: TCP
targetPort: 80
selector:
app: YOUR_APP_NAME
sessionAffinity: None
type: ClusterIP