Istio via Helm
The instructions below show how to install Curiefense on a Kubernetes cluster, embedded in an Istio service mesh. It assumes that the instructions described in First Tasks have been completed successfully.
The following tasks, each described below in sequence, should be performed:
At the bottom of this page is a Reference section describing the charts and configuration variables.
Setup Synchronization
An AWS S3 bucket must be available to synchronize configurations between the confserver
and the Curiefense Istio sidecars. The following Curiefense variables must be set:
In
deploy/istio-helm/chart/values.yaml
:Set
curieconf_manifest_url
to the bucket URL.
In
deploy/curiefense-helm/curiefense/values.yaml
:Set
curieconf_manifest_url
to the bucket URL.
Create a Kubernetes Cluster Running Helm
Access to a Kubernetes cluster running Helm v2 is required. Dynamic provisioning of persistent volumes must be supported. To set a StorageClass other than the default, change or override variable storage_class_name
in deploy/curiefense-helm/curiefense/values.yaml
.
Below are instructions for several ways to achieve this:
Using minikube, Kubernetes 1.14.9 and Helm v2.13.1 (dynamic provisioning is enabled by default)
Using Google GKE, Kubernetes 1.16.13 (with RBAC) and Helm v2.16.7 (dynamic provisioning is enabled by default)
Using Amazon EKS, Kubernetes 1.18 (with RBAC) and Helm v2.16.7 (dynamic provisioning is enabled by default)
Option 1: Using minikube
This section describes the install for a single-node test setup (which is generally not useful for production).
Install minikube
Starting from a fresh ubuntu 20.04 VM:
Install docker (https://docs.docker.com/engine/install/ubuntu/)
Install kubectl (https://kubernetes.io/docs/tasks/tools/install-kubectl/) -- use version 1.14.9.
Install minikube (https://minikube.sigs.k8s.io/docs/start/)
Allow your user to interact with docker:
sudo usermod -aG docker $USER && newgrp docker
Start a screen
or tmux
, and keep the following command running:
Install Helm v2.13.1
Run the following commands:
(Alternately, Helm can be manually downloaded as a binary release, as explained at https://helm.sh/docs/intro/install/. If you choose to do this, ensure that you obtain v2.13.1.)
Now install Helm to the Kubernetes cluster:
Option 2: Using Google GKE
This option uses a more recent Kubernetes, with RBAC enabled.
Install kubectl
Follow instructions at https://kubernetes.io/docs/tasks/tools/install-kubectl/. Use version 1.16.13.
Create a cluster
Install Helm v2.16.7
(Alternately, Helm can be manually downloaded as a binary release, as explained at https://helm.sh/docs/intro/install/. If you choose to do this, ensure that you obtain v2.16.7.)
Now we must define RBAC authorizations. Helm needs to be able to deploy applications to both the curiefense
and istio-system
namespaces.
To do that, we provide an example configuration, which installs Tiller in the kube-system
namespaces, and grants it cluster-admin permissions.
Finally, install Helm to the Kubernetes cluster:
Option 3: Using Amazon EKS
This option uses a more recent Kubernetes, with RBAC enabled.
Install kubectl
Follow instructions at https://kubernetes.io/docs/tasks/tools/install-kubectl/. Use version 1.18.
Create a cluster
Install Helm v2.16.7
Follow all the "Install Helm v2.16.7" instructions shown above in the Google GKE section.
Reset State
If you have a clean machine where Curiefense has never been installed, skip this step and go to the next.
Otherwise, run these commands:
Ensure that helm ls -a
outputs nothing.
Create Namespaces
Run the following commands:
Setup Secrets
AWS credentials
Encode the AWS S3 credentials that have r/w access to the S3 bucket. This yields a base64 string:
Create a local file called s3cfg.yaml
, with the contents below, replacing both occurrences of BASE64_S3CFG
with the previously obtained base64 string:
Deploy this secret to the cluster:
Setup TLS
Using TLS is optional.
The UIServer can be made to be reachable over HTTPS. To do that, two secrets have to be created to hold the TLS certificate and TLS key.
Create a local file called uiserver-tls.yaml
, replacing TLS_CERT_BASE64
with the base64-encoded PEM X509 TLS certificate, and TLS_KEY_BASE64
with the base64-encoded TLS key.
Deploy this secret to the cluster:
An example file with self-signed certificates is provided at deploy/curiefense-helm/example-uiserver-tls.yaml
.
When running ./deploy.sh
in the next step, add this argument to enable TLS on the UIServer:
Deploy Istio and Curiefense Images
Deploy the Istio service mesh:
And then the Curiefense components:
Deploy the (Sample) App
The application to be protected by Curiefense should now be deployed. These instructions are for the sample application bookinfo
.
Create the namespace
Create the Kubernetes namespace, and add the istio-injection=enabled
label that will make Istio automatically inject necessary sidecars to applications that are deployed in this namespace.
Install the application
Test bookinfo
Check that bookinfo
Pods are running (wait a bit if they are not):
Sample output example:
Check that the application is working by querying its API directly without going through the Istio service mesh:
Expected output:
Test access to bookinfo through Istio
(Replace "ip" with "hostname" if running in an environment where the LoadBalancer yields a FQDN, as is the case with Amazon's ELB.)
Expected output:
If this error occurs: Could not resolve host: a6fdxxxxxxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxx.us-west-2.elb.amazonaws.com
...the ELB is not ready yet. Wait and retry until it becomes available (typically a few minutes).
Check that logs reach the accesslog UI
Run this query
(Replace "ip" with "hostname" if running in an environment where the LoadBalancer yields a FQDN, as is the case with Amazon's ELB.)
Run this to ensure that the logs have been recorded and are reachable from the UI server:
Check that a result is return, and that it does contains TEST_STRING
.
Expose Curiefense Services using NodePorts
Run the following commands to expose Curiefense services through NodePorts. Warning: if the machine has a public IP, the services will be exposed on the Internet.
Start with this command:
The following command can be used to determine the IP address of your cluster nodes on which services will be exposed:
For minikube only:
If you are using minikube, also run the following commands on the host in order to expose services on the Internet:
For Amazon EKS only:
If you are using Amazon EKS, you will also need to allow inbound connections for port range 30000-30700 from your IP. Go to the EC2 page in the AWS console, select the EC2 instance for the cluster (named curiefense-eks-...-Node
), select the "Security" pane, select the security group (named eks-cluster-sg-curiefense-eks-[0-9]+
), then add the incoming rule.
Access Curiefense Services
The UIServer is now available on port 30080 over HTTP, and on port 30443 over HTTPS.
Grafana is now available on port 30300 over HTTP.
For the bookinfo
sample app, the Book Review product page is now available on port 30081 over HTTP, and on port 30444 over HTTPS (if you chose to enable TLS).
The confserver is now available on port 30000 over HTTP.
Kibana is now available on port 30601 over HTTP.
Elasticsearch is now available on port 30200 over HTTP.
For a full list of ports used by Curiefense containers, see the Reference page on services and containers.
Reference: Description of Helm Charts
Curiefense charts
Helm charts are divided as follows:
curiefense-admin
- confserver and UIServer.curiefense-dashboards
- Grafana and Prometheus.curiefense-log
- log storage: elasticsearch (default); log forwarders for elasticsearch: logstash (default), fluentd; log display interface: kibana (default)curiefense-proxy
- curielogger, curiesync and redis (used for synchronizationj.
Chart configuration variables
Configuration variables in deploy/curiefense-helm/curiefense/values.yaml
can be modified or overridden to fit your deployment needs:
Variables in the
images
section define the Docker image names for each component. Override this if you want to host images on your own private registry.storage.storage_class_name
is the StorageClass that is used for dynamic provisioning of Persistent Volumes. It defaults tonull
(default storage class, which works by default on EKS, GKE and minikube).storage.*_storage_size
variables define the size of persistent volumes. The defaults are fine for a test or small-scale deployment.settings.curieconf_manifest_url
is the URL of the AWS S3 bucket that is used to synchronize configurations between theconfserver
and the Curiefense Istio sidecars.settings.curiefense_es_forwarder
defines whether logs are forwarded to elasticsearch using fluentd or logstash (default). Has no effect ifsettings.curiefense_logdb_type
is set toelasticsearch
.settings.curiefense_es_hosts
is the hostname for the elasticsearch cluster. Changing it is required only if the elasticsearch cluster supplied by this chart is not used, and replaced with an externally-managed cluster.settings.curiefense_logstash_url
is the url of the logstash server. Changing it is required only if the logstash instance supplied by this chart is not used, and replaced with an externally-managed instance.settings.curiefense_fluentd_url
is the url of the fluentd server. Changing it is required only if the fluentd instance supplied by this chart is not used, and replaced with an externally-managed instance.settings.curiefense_kibana_url
is the url of the kibana server. Changing it is required only if the kibana instance supplied by this chart is not used, and replaced with an externally-managed instance.settings.curiefense_bucket_type
is the type of cloud bucket that is used to transfer configurations fromconfserver
to envoy proxies (supported values:s3
orgs
).settings.curiefense_es_index_name
is the name of the elasticsearch index where logs are stored.settings.docker_tag
defines the image tag versions that should be used.deploy.sh
will override this to deploy a version that matches the current working directory, unless theDOCKER_TAG
environment variable is set.settings.redis_port
is the port on which redis listens. This value must be set identically in the Istio chart'svalues.yaml
.settings.uiserver_enable_tls
is a boolean that defines whether TLS is enabled on the UI server. If it is enabled, then a certificate and key must have been provisioned (see above).Variables in the
requests
define default CPU requirements for pods.Variables in the
enable
allow disabling parts of a deployment, which can be supplied outside of this chart (ex. kibana, logstash, fluentd, elasticsearch, prometheus...).
Istio chart
Components added or modified by Curiefense are defined in deploy/istio-helm/chart/charts/gateways
. Compared to the upstream Istio Kubernetes distribution, we add or change the following Pods:
An
initContainer
calledcuriesync-initialpull
has been added. It synchronizes configuration before running Envoy.A container called
curiesync
has been added. It periodically fetches the configuration that should be applied from an S3 bucket (configurable with thecurieconf_manifest_url
variable), and makes it available to Envoy. This configuration is used by the LUA code that inspects traffic.The container called
istio-proxy
now uses our custom Docker image, embedding our HTTP Filter, written in Lua.An
EnvoyFilter
has been added. It forwards access logs tocurielogger
(seecuriefense_access_logs_filter.yaml
).An
EnvoyFilter
has been added. It runs Curiefense's Lua code to inspect incoming traffic on the Ingress Gateways (seecuriefense_lua_filter.yaml
).
Chart configuration variables
Configuration variables in deploy/istio-helm/chart/values.yaml
can be modified or overridden to fit your deployment needs:
gw_image
defines the name of the image that contains our filtering code and modified Envoy binary.curiesync_image
defines the name of the image that contains scripts that synchronize local Envoy configuration with the AWS S3 bucket defined incurieconf_manifest_url
.curieconf_manifest_url
is the URL of the AWS S3 or Google Storage bucket that is used to synchronize configurations between theconfserver
and the Curiefense Istio sidecars.curiefense_namespace
is the name of the namespace where Curiefense components defined indeploy/curiefense-helm/
are running.curiefense_bucket_type
is the type of cloud bucket that is used to transfer configurations fromconfserver
to envoy proxies (supported values:s3
orgs
).redis_host
defines the hostname of the redis server that will be used bycurieproxy
. Defaults to the provided redis StatefulSet. Override this to replace the redis instance with one you supply.redis_port
defines the port of the redis server that will be used bycurieproxy
. Defaults to the provided redis StatefulSet. Override this to replace the redis instance with one you supply.initial_curieconf_pull
defines whether a configuration should be pulled from the AWS S3 bucket before running Envoy (true
), or if traffic should be allowed to flow with a default configuration until the next synchronization (typically every 10s).
Last updated