Configure HTTP Proxy
Configure HTTP proxy for the Kommander cluster(s)
Kommander supports environments where access to the Internet is restricted, and must be made through an HTTP/HTTPS proxy.
In these environments, you must configure Kommander to use the HTTP/HTTPS proxy. In turn, Kommander configures all platform services to use the HTTP/HTTPS proxy.
Kommander follows a common convention for using an HTTP proxy server. The convention is based on three environment variables, and is supported by many, though not all, applications.
- HTTP_PROXY: the HTTP proxy server address
- HTTPS_PROXY: the HTTPS proxy server address
- NO_PROXY: a list of IPs and domain names that are not subject to proxy settings
Prerequisites
In the examples below:
- The - curlcommand-line tool is available on the host.
- The proxy server address is - http://proxy.company.com:3128.
- The HTTP and HTTPS proxy server addresses use the - httpscheme.
- The proxy server can reach - www.google.comusing HTTP or HTTPS.
Verify the cluster nodes can access the Internet through the proxy server. On each cluster node, run:
curl --proxy http://proxy.company.com:3128 --head http://www.google.com
curl --proxy http://proxy.company.com:3128 --head https://www.google.comIf the proxy is working for HTTP and HTTPS, respectively, the curl command returns a 200 OK HTTP response.
Enable Gatekeeper
Gatekeeper acts as a Kubernetes mutating webhook. You can use this to mutate the Pod resources with HTTP_PROXY, HTTPS_PROXY and NO_PROXY environment variables.
- Create (if necessary) or update the Kommander installation configuration file. If one does not already exist, then create it using the following commands: CODE- dkp install kommander --init > kommander.yaml
- Append this - appssection to the- kommander.yamlfile with the following values to enable Gatekeeper and configure it to add HTTP proxy settings to the pods.- NOTE: Only pods created after applying this setting will be mutated. Also, this will only affect pods in the namespace with the - "gatekeeper.d2iq.com/mutate=pod-proxy"label.CODE- apps: gatekeeper: values: | disableMutation: false mutations: enablePodProxy: true podProxySettings: noProxy: "127.0.0.1,192.168.0.0/16,10.0.0.0/16,10.96.0.0/12,169.254.169.254,169.254.0.0/24,localhost,kubernetes,kubernetes.default,kubernetes.default.svc,kubernetes.default.svc.cluster,kubernetes.default.svc.cluster.local,.svc,.svc.cluster,.svc.cluster.local,.svc.cluster.local.,kubecost-prometheus-server.kommander,logging-operator-logging-fluentd.kommander.svc.cluster.local,elb.amazonaws.com" httpProxy: "http://proxy.company.com:3128" httpsProxy: "http://proxy.company.com:3128" excludeNamespacesFromProxy: [] namespaceSelectorForProxy: "gatekeeper.d2iq.com/mutate": "pod-proxy"
- Create the - kommanderand- kommander-fluxnamespaces, or the namespace where Kommander will be installed. Label the namespaces to activate the Gatekeeper mutation on them:CODE- kubectl create namespace kommander kubectl label namespace kommander gatekeeper.d2iq.com/mutate=pod-proxy kubectl create namespace kommander-flux kubectl label namespace kommander-flux gatekeeper.d2iq.com/mutate=pod-proxy
Create Gatekeeper ConfigMap in the Kommander Namespace
To configure Gatekeeper so that these environment variables are mutated in the pods, create the following gatekeeper-overrides ConfigMap in the kommander Workspace you created in a previous step:
export NAMESPACE=kommandercat << EOF | kubectl apply -f -
apiVersion: v1
kind: ConfigMap
metadata:
  name: gatekeeper-overrides
  namespace: ${NAMESPACE}
data:
  values.yaml: |
    ---
    # enable mutations
    disableMutation: false
    mutations:
      enablePodProxy: true
      podProxySettings:
        noProxy: "127.0.0.1,192.168.0.0/16,10.0.0.0/16,10.96.0.0/12,169.254.169.254,169.254.0.0/24,localhost,kubernetes,kubernetes.default,kubernetes.default.svc,kubernetes.default.svc.cluster,kubernetes.default.svc.cluster.local,.svc,.svc.cluster,.svc.cluster.local,.svc.cluster.local.,kubecost-prometheus-server.kommander,logging-operator-logging-fluentd.kommander.svc.cluster.local,elb.amazonaws.com"
        httpProxy: "http://proxy.company.com:3128"
        httpsProxy: "http://proxy.company.com:3128"
      excludeNamespacesFromProxy: []
      namespaceSelectorForProxy:
        "gatekeeper.d2iq.com/mutate": "pod-proxy"
EOFSet the httpProxy and httpsProxy environment variables to the address of the HTTP and HTTPS proxy servers, respectively. Set the noProxy environment variable to the addresses that should be accessed directly, not through the proxy.
Performing this step before installing Kommander allows the Flux components to respect the proxy configuration in this ConfigMap.
HTTP Proxy Configuration Considerations
To ensure that core components work correctly, always add these addresses to the noProxy:
- Loopback addresses ( - 127.0.0.1and- localhost)
- Kubernetes API Server addresses 
- Kubernetes Pod IPs (for example, - 192.168.0.0/16). This comes from two places:- Calico pod CIDR - Defaults to - 192.168.0.0/16
- The - podSubnetis configured in CAPI objects and needs to match above Calico's - Defaults to- 192.168.0.0/16(same as above)
 
- Kubernetes Service addresses (for example, - 10.96.0.0/12,- kubernetes,- kubernetes.default,- kubernetes.default.svc,- kubernetes.default.svc.cluster,- kubernetes.default.svc.cluster.local,- .svc,- .svc.cluster,- .svc.cluster.local,- .svc.cluster.local.)
- Auto-IP addresses - 169.254.169.254,169.254.0.0/24
In addition to the values above, the following settings are needed when installing on AWS:
- The default VPC CIDR range of - 10.0.0.0/16
- kube-apiserverinternal/external ELB address
- The - NO_PROXYvariable contains the Kubernetes Services CIDR. This example uses the default CIDR,- 10.96.0.0/12. If your cluster's CIDR is different, update the value in the- NO_PROXYfield.
- Based on the order in which the Gatekeeper Deployment is Ready (in relation to other Deployments), not all the core services are guaranteed to be mutated with the proxy environment variables. Only the user deployed workloads are guaranteed to be mutated with the proxy environment variables. If you need a core service to be mutated with your proxy environment variables, you can restart the AppDeployment for that core service. 
Install Kommander
Kommander installs with the DKP CLI. Install Kommander using the configuration files and ConfigMap from previous steps:
NOTE: To ensure Kommander is installed on the workload cluster, use the --kubeconfig=cluster_name.conf flag:
dkp install kommander --installer-config kommander.yamlConfigure Workspace or Project
Configure the Workspace or Project in which you want to use the proxy.  To have Gatekeeper mutate the manifests, create the Workspace (or Project) with the following label:
labels:
  gatekeeper.d2iq.com/mutate: "pod-proxy"This can be done when creating the Workspace (or Project) from the UI OR by running the following command from the CLI once the namespace is created:
kubectl label namespace <NAMESPACE> "gatekeeper.d2iq.com/mutate=pod-proxy"Configure HTTP Proxy in Attached Clusters
To ensure that Gatekeeper is deployed before everything else in the attached clusters that you want to configure with proxy configuration, you must manually create the exact Namespace of the Workspace in which the cluster is going to be attached, before attaching the cluster:
Execute the following command in the attached cluster before attaching it to the host cluster:
kubectl create namespace <NAMESPACE>Then, to configure the pods in this namespace to use proxy configuration, you must label the Workspace with gatekeeper.d2iq.com/mutate=pod-proxy when creating it so that Gatekeeper deploys a validatingwebhook to mutate the pods with proxy configuration.
kubectl label namespace <NAMESPACE> "gatekeeper.d2iq.com/mutate=pod-proxy"Create Gatekeeper ConfigMap in the Workspace Namespace
To configure Gatekeeper so that these environment variables are mutated in the pods, create the following gatekeeper-overrides ConfigMap in the Workspace Namespace:
export NAMESPACE=<NAMESPACE>cat << EOF | kubectl apply -f -
apiVersion: v1
kind: ConfigMap
metadata:
  name: gatekeeper-overrides
  namespace: ${NAMESPACE}
data:
  values.yaml: |
    ---
    # enable mutations
    disableMutation: false
    mutations:
      enablePodProxy: true
      podProxySettings:
        noProxy: "127.0.0.1,192.168.0.0/16,10.0.0.0/16,10.96.0.0/12,169.254.169.254,169.254.0.0/24,localhost,kubernetes,kubernetes.default,kubernetes.default.svc,kubernetes.default.svc.cluster,kubernetes.default.svc.cluster.local,.svc,.svc.cluster,.svc.cluster.local,.svc.cluster.local.,kubecost-prometheus-server.kommander,logging-operator-logging-fluentd.kommander.svc.cluster.local,elb.amazonaws.com"
        httpProxy: "http://proxy.company.com:3128"
        httpsProxy: "http://proxy.company.com:3128"
      excludeNamespacesFromProxy: []
      namespaceSelectorForProxy:
        "gatekeeper.d2iq.com/mutate": "pod-proxy"
EOFSet the httpProxy and httpsProxy environment variables to the address of the HTTP and HTTPS proxy servers, respectively. Set the noProxy environment variable to the addresses that should be accessed directly, not through the proxy. The list of the recommended settings is in the section HTTP Proxy Configuration Considerations above.
Configure Your Applications
In a default installation with gatekeeper enabled, you can have proxy environment variables applied to all your pods automatically by adding the following label to your namespace:
"gatekeeper.d2iq.com/mutate": "pod-proxy"No further manual changes are required.
Manually Configure Your Application
If Gatekeeper is not installed, and you need to use an HTTP proxy, you must manually configure your applications.
Some applications follow the convention of HTTP_PROXY, HTTPS_PROXY, and NO_PROXY environment variables.
In this example, the environment variables are set for a container in a Pod:
See Define Environment Variables for a Container for more details.
Next Steps:
Now select your environment, and finish your Kommander Installation in one of the following:
Install Kommander in an Air-gapped Environment
