Create Ingress-Nginx
TOC
Overview
The NGINX Ingress Controller is deployed as a cluster plugin in the cpaas-system
namespace. This guide covers installation, configuration, and best practices for managing the Ingress NGINX Controller in your Kubernetes cluster.
Installation
- Navigate to
Administrator -> Marketplace -> Cluster Plugin
- Locate the Ingress NGINX plugin and click
Install

Configuration Management
Updating Configuration
- Configure kubectl to use the global cluster context
- Retrieve the ModuleInfo name for your cluster:
kubectl get minfo | grep ingress | grep $CLUSTER_NAME
- Edit the ModuleInfo configuration:
kubectl edit minfo $MINFO
The spec.config
section corresponds to the Ingress NGINX Helm chart values.
Common Configuration Scenarios
Exposing via LoadBalancer
To expose the Ingress Controller using a LoadBalancer service:
spec:
config:
controller:
service:
type: LoadBalancer
MetalLB Integration
To specify LoadBalancer VIP when using MetalLB:
spec:
config:
controller:
service:
annotations:
metallb.universe.tf/loadBalancerIPs: "192.168.2.2" # Desired VIP
metallb.universe.tf/address-pool: "pool-name" # MetalLB address pool
Advanced Controller Deployment Settings
Configure network mode, replicas, resource limits, and node selection:
spec:
config:
controller:
hostNetwork: false
replicaCount: 1
nodeSelector:
kubernetes.io/os: linux
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 200m
memory: 256Mi
SSL Passthrough
Enable SSL passthrough functionality:
spec:
config:
controller:
extraArgs:
enable-ssl-passthrough: ""
IPv6 Single-Stack Support
Configure for IPv6-only environments:
spec:
config:
controller:
service:
ipFamilies:
- IPv6
Performance Tuning
Resource Allocation Guidelines
Small Scale (< 300 QPS)
spec:
config:
controller:
resources:
limits:
cpu: 200m
memory: 256Mi
requests:
cpu: 200m
memory: 256Mi
Medium Scale (< 10,000 QPS)
spec:
config:
controller:
resources:
limits:
cpu: "2"
memory: 1Gi
requests:
cpu: "2"
memory: 1Gi
Large Scale (< 20,000 QPS)
spec:
config:
controller:
resources:
limits:
cpu: "4"
memory: 2Gi
requests:
cpu: "4"
memory: 2Gi
High Performance (Unlimited)
For maximum performance with no CPU limits:
spec:
config:
controller:
resources:
requests:
cpu: "4"
memory: 2Gi
Important Notes
Limitations
- Only one Ingress NGINX Controller instance is supported per cluster
Version Compatibility
Current version mapping:
- ACP Ingress NGINX 4.1.x corresponds to official Ingress NGINX 4.12.2
For more detailed configuration options, refer to the official Ingress NGINX chart documentation.