Skip to content

Docker image adding the Signal Sciences module into the stock kubernetes nginx ingress controller image.

License

Notifications You must be signed in to change notification settings

signalsciences/sigsci-nginx-ingress-controller

Repository files navigation

sigsci-nginx-ingress-controller

Dockerfile to add the Signal Sciences NGINX module into the stock Kubernetes NGINX ingress controller image (https://github.com/kubernetes/ingress-nginx)

Prebuilt images hosted here: https://hub.docker.com/repository/docker/signalsciences/sigsci-nginx-ingress-controller

Tags/Releases track image tags of the upstream docker repo. These images work as drop-in replacements for:

  • registry.k8s.io/ingress-nginx/controller images with corresponding tags

NGINX, Inc. Use Dockerfile.nginxinc if you want to add the Signal Sciences NGINX module into the stock nginxinc/kubernetes-ingress image (https://github.com/nginxinc/kubernetes-ingress)

Prebuilt images are hosted here: https://hub.docker.com/repository/docker/signalsciences/sigsci-nginxinc-ingress-controller

Helm install instructions with override file

The following are steps to install kubernetes/ingress-nginx via helm using the sigsci-values.yaml override file. This adds the custom sigsci-nginx-ingress-controller and sigsci-agent.

  1. Add the kubernetes/ingress-nginx repo
    helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx

  2. Add SIGSCI_ACCESSKEYID and SIGSCI_SECRETACCESSKEY to the sigsci-values.yaml file.

  3. Install with the release name my-ingress in the default namespace
    helm install -f sigsci-values.yaml my-ingress ingress-nginx/ingress-nginx

  • You can specify a namespace with -n flag:
    helm install -n NAMESPACE -f sigsci-values.yaml my-ingress ingress-nginx/ingress-nginx
  1. Create an Ingress resource. This step will vary depending on setup and supports a lot of configurations. Official documentation can be found regarding Basic usage - host based routing

Here is an example Ingress file:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  annotations:
    kubernetes.io/ingress.class: nginx
    nginx.ingress.kubernetes.io/rewrite-target: /
  name: hello-kubernetes-ingress
  #namespace: SET THIS IF NOT IN DEFAULT NAMESPACE
spec:
  rules:
  - host: example.com
    http:
      paths:
      - pathType: Prefix
        path: /testpath
        backend:
          service:
            name: NAME OF YOUR SERVICE
            port:
              number: 80

Follow these steps to install nginxinc/kubernetes-ingress with the sigsci-nginxinc-values.yaml override file. This will add the custom sigsci-nginx-ingress-controller and sigsci-agent.

  1. Add the nginxinc/kubernetes-ingress repo
    helm repo add nginx-stable https://helm.nginx.com/stable

  2. Add SIGSCI_ACCESSKEYID and SIGSCI_SECRETACCESSKEY to the sigsci-nginxinc-values.yaml file.

  3. Install with helm
    helm install -f sigsci-nginxinc-values.yaml my-ingress nginx-stable/nginx-ingress

  • You can specify a namespace with -n flag:
    helm install -n NAMESPACE -f sigsci-nginxinc-values.yaml my-ingress nginx-stable/nginx-ingress
  1. Create an Ingress resource. This step will vary depending on setup and supports a lot of configurations. Official documentation can be found regarding Basic usage - host based routing

Here is an example Ingress file for the nginxinc/kubernetes-ingress controller:

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: cafe-ingress
spec:
  tls:
  - hosts:
    - cafe.example.com
    secretName: cafe-secret
  rules:
  - host: cafe.example.com
    http:
      paths:
      - path: /tea
        pathType: Prefix
        backend:
          service:
            name: tea-svc
            port:
              number: 80
      - path: /coffee
        pathType: Prefix
        backend:
          service:
            name: coffee-svc
            port:
              number: 80
  1. Now you are ready to setup rules, rate limits and more using Signal Sciences

Helm Upgrade with Override File

To update the ingress-nginx charts or kubernetes-ingress charts

  1. Update the sigsci-nginx-ingress-controller to the latest version in the sigsci-values.yaml or sigsci-nginxinc-values.yaml file
controller:
    # Replaces the default nginx-controller image with a custom image that contains the Signal Sciences nginx Module
    image:
      repository: signalsciences/sigsci-nginx-ingress-controller
      tag: "1.10.0"
      pullPolicy: IfNotPresent
  1. Then run helm upgrade with override file. This example is running helm upgrade against the my-ingress release created in step 3 of the previous section.
    helm upgrade -f sigsci-values.yaml my-ingress ingress-nginx/ingress-nginx or helm upgrade -f sigsci-nginxinc-values.yaml my-ingress nginx-stable/nginx-ingress depending on your upstream ingress controller
  • If ingress is not in default namespace use -n to specify namespace:
    helm upgrade -n NAMESPACE -f sigsci-values.yaml my-ingress ingress-nginx/ingress-nginx or helm upgrade -n NAMESPACE -f sigsci-nginxinc-values.yaml my-ingress nginx-stable/nginx-ingress

Uninstall Release

Uninstall release my-ingress in default namespace:
helm uninstall my-ingress

If not in default namespace use -n to specify namesapce:
helm uninstall -n NAMESPACE my-ingress

About

Docker image adding the Signal Sciences module into the stock kubernetes nginx ingress controller image.

Resources

License

Stars

Watchers

Forks

Packages

No packages published