This operator uses the latest version of docker image with Apache HTTPD server v2.4.58 on date 2/12/2023 That version contains fixes for CVE-2023-45802, CVE-2023-43622 and CVE-2023-31122
Apacheweb operator is powered by Apache HTTP server.
Apacheweb operator provides basic features of Apache HTTP server - web server and load balancer by using the extensions of Apache module mod_proxy_balancer.
Apache HTTP server was the most popular HTTP server in the near past and remains very popular in the Internet in nowadays, so the main goal of this operator is to bring Apache HTTP server features to Kubernetes world.
You’ll need a Kubernetes cluster to run against. You can use KIND to get a local cluster for testing, or run against a remote cluster.
Note: Your controller will automatically use the current context in your kubeconfig file (i.e. whatever cluster kubectl cluster-info shows).
- Install the CRDs into the cluster:
make install- Run your controller (this will run in the foreground, so switch to a new terminal if you want to leave it running):
make runNOTE: You can also run this in one step by running: make install run
- Install Instances of Custom Resources:
kubectl apply -f config/samples/- Build and push your image to the location specified by IMG:
make docker-build docker-push IMG=<some-registry>/apache-operator:tag- Deploy the controller to the cluster with the image specified by IMG:
make deploy IMG=<some-registry>/apache-operator:tagapiVersion: apacheweb.arsenal.dev/v1alpha1
kind: Apacheweb
metadata:
  labels:
    app.kubernetes.io/name: apacheweb
    app.kubernetes.io/instance: apacheweb-sample
    app.kubernetes.io/part-of: apache-operator
    app.kubernetes.io/managed-by: kustomize
    app.kubernetes.io/created-by: apache-operator
  name: apacheweb-sample
spec:
  serverName: "test.example.com"
  size: 2
  type: "lb"
  loadBalancer:
    serverPort: 8080
    proxyPaths:
    - endPointsList:
      - ipAddress: remote-host
        port: 9876
        proto: http
      path: /test1
    - endPointsList:
      - ipAddress: remote-host
        port: 9876
        proto: http
      path: /test2apiVersion: apacheweb.arsenal.dev/v1alpha1
kind: Apacheweb
metadata:
  labels:
    app.kubernetes.io/name: apacheweb
    app.kubernetes.io/instance: apacheweb-sample
    app.kubernetes.io/part-of: apache-operator
    app.kubernetes.io/managed-by: kustomize
    app.kubernetes.io/created-by: apache-operator
  name: apacheweb-sample
spec:
  serverName: "test.example.com"
  size: 2
  type: "lb" # type of operator: use "web" for web server or "lb" for load balancer
  loadBalancer:
    proto: https # proxy protocol
    path: /test # proxy path
    backEndService: remote-server # name of Service forwarding toapiVersion: apacheweb.arsenal.dev/v1alpha1
kind: Apacheweb
metadata:
  labels:
    app.kubernetes.io/name: apacheweb
    app.kubernetes.io/instance: apacheweb-sample
    app.kubernetes.io/part-of: apache-operator
    app.kubernetes.io/managed-by: kustomize
    app.kubernetes.io/created-by: apache-operator
  name: apacheweb-sample
spec:
  serverName: "test.example.com"
  size: 2
  type: "web" # type of operator: use "web" for web server or "lb" for load balancer
  webServer:
    documentRoot: /usr/local/apache2
    serverAdmin: [email protected]
    serverPort: 8888kubectl apply -f apacheweb.yamlIf you use Apacheweb as load balancer, don't forget labeling the Servie resource which was put in spec.loadBalancer.backEndService - this service is used as a source of a target (remote) endpoints.
kubectl label service remote-server "kubernetes.io/service-name=remote-server"k describe apachewebs.apacheweb.arsenal.dev apacheweb-sample
...
Status:
  End Points:
    Ip Address:  10.244.77.3
    Port:        80
    Proto:       http
    Status:      true
    Ip Address:  10.244.77.6
    Port:        80
    Proto:       http
    Status:      true
    Ip Address:  10.244.77.7
    Port:        80
    Proto:       http
    Status:      true
  Proxy Paths:
    End Points List:
      Ip Address:  remote-server
      Port:        9876
      Proto:       http
    Path:          /path1
    End Points List:
      Ip Address:  remote-server
      Port:        9876
      Proto:       http
    Path:          /path2
Events:
  Type    Reason   Age                    From                  Message
  ----    ------   ----                   ----                  -------
  Normal  Created  3m41s (x3 over 4m11s)  apacheweb-controller  EndPoint added IPAddress 10.244.77.3, port 80, protocol http, status true
  Normal  Created  3m41s (x2 over 3m43s)  apacheweb-controller  EndPoint added IPAddress 10.244.77.6, port 80, protocol http, status true
  Normal  Created  3m41s                  apacheweb-controller  EndPoint added IPAddress 10.244.77.7, port 80, protocol http, status true
  Normal  Created  9s    apacheweb-controller  Proxy Path added Path /test2, IP address remoe-server, Port 9876, Protocol http, Status false
  Normal  Created  9s    apacheweb-controller  Proxy Path added Path /test3, IP address remote-server, Port 9876, Protocol http, Status false
k get pod -o wide|grep apacheweb-sample
apacheweb-sample-569996dcc9-8sxfv   1/1     Running   0          14m   10.244.77.10   k8s    <none>           <none>
apacheweb-sample-569996dcc9-plhcl   1/1     Running   0          14m   10.244.77.9    k8s    <none>           <none>
curl http://10.244.77.10:8080/test
hostname: remote-server-7fc9dffd6b-brqph
curl http://10.244.77.10:8080/test
hostname: remote-server-7fc9dffd6b-f29h6
curl http://10.244.77.10:8080/test
hostname: remote-server-7fc9dffd6b-x6lhbYou can use a Service for Apacheweb resources to destribute workloads between the load balancers
This project aims to follow the Kubernetes Operator pattern
It uses Controllers which provides a reconcile function responsible for synchronizing resources untile the desired state is reached on the cluster
To delete the CRDs from the cluster:
make uninstallUnDeploy the controller to the cluster:
make undeploy