Amazon Elastic Kubernetes Service (EKS)¶
This tutorial demonstrates how to deploy the Open AMT Cloud Toolkit on a Kubernetes cluster using EKS. To perform a simpler test deployment, use a single-mode cluster locally. See Kubernetes (K8S).
Amazon EKS offers serverless Kubernetes, an integrated continuous integration and continuous delivery (CI/CD) experience, and enterprise-grade security and governance. Learn more about EKS here.
Prerequisites¶
Get the Toolkit¶
-
Clone the Open AMT Cloud Toolkit.
git clone https://github.com/open-amt-cloud-toolkit/open-amt-cloud-toolkit --branch v2.26.0
Create a New EKS Cluster¶
-
Login or Authenticate to AWS. See Configure AWS CLI for SSO, if not setup yet.
If your organization does not use SSO, see Authentication and access credentials for all authentication options to choose from and how to configure the AWS CLI.
aws sso login
-
Follow steps to Create a key pair using Amazon EC2 to create a SSH key for accessing the cluster.
-
Create a new EKS cluster and supporting components.
eksctl create cluster --name <cluster-name> --region <region> --with-oidc --ssh-access --ssh-public-key <ssh-keypair-name> --managed
Where:
- <cluster-name> is the name of the new EKS cluster.
- <region> is the AWS region to deploy the stack (Ex:
us-west-2
). - <ssh-keypair-name> is the name of the SSH key from the previous step (Step 2).
Configure EKS Instance¶
Ensure your kubectl
is connected to the correct EKS cluster to manage.
-
Provide your region and cluster name.
aws eks update-kubeconfig --region <region> --name <cluster-name>
Where:
- <cluster-name> is the name of your EKS cluster.
- <region> is the AWS region where the cluster is (Ex:
us-west-2
).
Add EBS CSI driver to Cluster¶
The Amazon EBS CSI plugin requires IAM permissions to make calls to Amazon APIs on your behalf. This is required for Vault. Without the driver, Vault will be stuck pending since its volume will be unable to be created.
-
Create a new IAM role. Follow the steps in Creating the Amazon EBS CSI driver IAM role for service accounts.
-
Add the EBS CSI add-on to the cluster. Follow the steps in Managing the Amazon EBS CSI driver as an Amazon EKS add-on.
Create Postgres DB in RDS¶
-
Create a Postgres DB by following the steps for Creating an Amazon RDS DB instance.
Make sure to set the following configuration settings:
Field Set to Compute Resource Do not connect to an EC2 compute resource Virtual private cloud (VPC) Choose the VPC created from your cluster. It should follow the format: 'eksctl-<cluster-name>-cluster/VPC' Public access Yes. In the next steps, we will create Security rules to limit access. VPC security group Choose existing Existing VPC security groups default Initial Database Name postgres
Configure Virtual Private Cloud (VPC) for access¶
- Go to RDS home.
- Select Databases from the left-hand side menu.
- Select your created database (Ex: database-1).
- Under Security in Connectivity & security, click on the VPC under VPC security groups (Ex:
default (sg-01b4767ggdcb52825)
). - Select the Security group ID (Ex:
sg-0e41dcdede3e2e584
). -
Select Edit Inbound rules.
Add Two New Rules¶
Rule One:
- Select Add rule.
- Under 'Type' select PostgresSQL.
- Under 'Source' select My IP.
Rule Two:
- Select Add rule.
- Under 'Type' select PostgresSQL.
- Under 'Source' select Custom.
- In the search box, select the security group starting with the label 'eks-cluster-sg'.
-
Select Save rules.
Create Databases¶
-
Use the database schema files to initialize the hosted Postgres DB in the following steps.
Where:
- <SERVERURL> is the location of the Postgres database (Ex:
database-1.jotd7t2abapq.us-west-2.rds.amazonaws.com
). - <USERNAME> is the admin username for the Postgres database (Chosen in Create Postgres DB in RDS).
- <SERVERURL> is the location of the Postgres database (Ex:
-
Create the MPS and RPS database and tables. Provide the database password when prompted.
psql -h <SERVERURL> -p 5432 -d postgres -U <USERNAME> -W -f ./data/init.sql -f ./data/initMPS.sql
Create Kubernetes Secrets¶
-
Open the
secrets.yaml
file in theopen-amt-cloud-toolkit/kubernetes/charts/
directory.Note - Additional Information about Secrets Created
Secret Name Usage mpsweb Provides credentials used for requesting a JWT. These credentials are also used for logging into the Sample Web UI. rps RPS database connection string. mps MPS database connection string. mpsrouter MPS database connection string. open-amt-admin-jwt Provides secret used for generating and verifying JWTs for authentication. open-amt-admin-acl Configures KONG with an Access Control List (ACL) to allow an admin user open-amt-admin
to access endpoints using the JWT retrieved when logging in.vault Vault root token for MPS and RPS access to Vault secret store. -
Replace the following placeholders.
Warning - Using SSL/TLS with AWS RDS
By default, this tutorial uses the connection string setting of
no-verify
for ease of setup. To fully configure SSL, follow the links below. For production, it is recommended to use a SSL connection.Find more information at Using SSL with a PostgreSQL DB instance and Updating applications to connect to PostgreSQL DB instances using new SSL/TLS certificates.
Once setup, the SSL mode in the connection strings should be set to either
verify-full
orverify-ca
.Placeholder Lines Required Usage <WEBUI-USERNAME> 7 Username of your choice For logging into the Sample Web UI. <WEBUI-PASSWORD> 8 Strong password of your choice For logging into the Sample Web UI. <DATABASE-USERNAME> 16, 24, 32 Database username chosen in Create Postgres DB in RDS Credentials for the services to connect to the database. <DATABASE-PASSWORD> 16, 24, 32 Database password chosen in Create Postgres DB in RDS Credentials for the services to connect to the database. <DATABASE-SERVER-URL> 16, 24, 32 Server URL Format: database-1.jotd7t2abapq.us-west-2.rds.amazonaws.com
Credentials for the services to connect to the database. <SSL-MODE> 16, 24
32Lines 16 and 24: Set to no-verify
Line 32: Set todisable
Credentials for the services to connect to the database. <YOUR-SECRET> 45 A strong secret of your choice (Example: A unique, random 256-bit string). Used when generating a JSON Web Token (JWT) for authentication. This example implementation uses a symmetrical key and HS256 to create the signature. Learn more about JWT. Important - Using Strong Passwords
The <WEBUI-PASSWORD> must meet standard, strong password requirements:
-
8 to 32 characters
-
One uppercase, one lowercase, one numerical digit, one special character
-
-
Save the file.
-
Apply the configuration file to create the secrets.
kubectl apply -f ./kubernetes/charts/secrets.yaml
Update Configuration¶
Edit values.yaml¶
-
Open the
values.yaml
file in the./open-amt-cloud-toolkit/kubernetes/charts/
directory. -
Remove the annotations section and
service.beta.kubernetes.io/azure-dns-label-name
key in thekong:
section. These are Azure-specific implementations.kong: proxy: annotations: # Delete this line service.beta.kubernetes.io/azure-dns-label-name: "<your-domain-name>" # Delete this line
-
Save the file.
Deploy Open AMT Cloud Toolkit using Helm¶
-
Deploy using Helm.
helm install openamtstack ./kubernetes/charts
Success
NAME: openamtstack LAST DEPLOYED: Thu Jul 15 11:17:38 2021 NAMESPACE: default STATUS: deployed REVISION: 1 TEST SUITE: None
-
View the pods. You might notice
mps
,rps
, andopenamtstack-vault-0
are not ready. This will change after we initialize and unseal Vault. All others should be Ready and Running.kubectl get pods
Success
NAME READY STATUS RESTARTS AGE mps-69786bfb47-92mpc 0/1 CreateContainerConfigError 0 2m6s mpsrouter-9b9bc499b-2tkb2 1/1 Running 0 2m6s openamtstack-kong-68d6c84bcc-fp8dl 2/2 Running 0 2m6s openamtstack-vault-0 0/1 Running 0 2m6s openamtstack-vault-agent-injector-6b564845db-zss78 1/1 Running 0 2m6s rps-79877bf5c5-dsg5p 0/1 CreateContainerConfigError 0 2m6s webui-6cc48f4d68-6r8b5 1/1 Running 0 2m6s
Initialize and Unseal Vault¶
Danger - Download and Save Vault Keys
Make sure to download your Vault credentials and save them in a secure location when unsealing Vault. If the keys are lost, a new Vault will need to be started and any stored data will be lost.
Tip - Finding the Vault UI External IP Address
The external IP of your Vault UI service can be found by running:
kubectl get services openamtstack-vault-ui
-
Please refer to HashiCorp documentation on how to Initialize and unseal Vault. Stop and return here after signing in to Vault with the
root_token
. -
After initializing and unsealing the vault, you need to enable the Key Value engine.
-
On the left-hand side menu, select Secrets engines.
-
Click Enable New Engine +.
-
Choose KV.
-
Click Enable Engine.
Vault Token Secret¶
Add the root token as a secret to the AKS cluster so that the services can access Vault.
-
Open the
secrets.yaml
file again in theopen-amt-cloud-toolkit/kubernetes/charts/
directory. -
Replace
<VAULT-ROOT-TOKEN>
in thevaultKey:
field (line 66) with the actual Vault root token. -
Save the file.
-
Update the Kubernetes
vault
secret.kubectl apply -f ./kubernetes/charts/secrets.yaml -l app=vault
Update commonName in values.yml¶
-
Get the
External-IP
for accessing the UI. Note and save the value underEXTERNAL-IP
.kubectl get service openamtstack-kong-proxy
-
Update the value for
commonName
in the mps section in thevalues.yml
file with theExternal-IP
from above. Recall thatvalues.yml
is located in./kubernetes/charts/
.mps: commonName: "" # update with External-IP from `kubectl get services` replicaCount: 1 logLevel: "silly" jwtExpiration: 1440
-
Update the stack using helm.
helm upgrade openamtstack ./kubernetes/charts
Verify running pods¶
-
View the pods. All pods should now be Ready and Running.
kubectl get pods
Success
NAME READY STATUS RESTARTS AGE mps-69786bfb47-92mpc 1/1 Running 0 4m5s mpsrouter-9b9bc499b-2tkb2 1/1 Running 0 4m5s openamtstack-kong-68d6c84bcc-fp8dl 2/2 Running 0 4m5s openamtstack-vault-0 1/1 Running 0 4m5s openamtstack-vault-agent-injector-6b564845db-zss78 1/1 Running 0 4m5s rps-79877bf5c5-dsg5p 1/1 Running 0 4m5s webui-6cc48f4d68-6r8b5 1/1 Running 0 4m5s
-
Check that the MPS Certificate is correct in your browser. Go to your FQDN at port 4433.
https://<Your-AWS-FQDN>:4433
-
Verify the MPS Certificate in your browser has the correct Issuer information and is Issued to your FQDN.
Troubleshoot -
Issued to
field showing NaN or blankIf your certificate is incorrect, the AMT device will not connect to the MPS server. See Figure 1.
Follow the steps below to correct the problem.
Example - Incorrect MPS Certificate
-
Open and Login to Vault UI.
-
Go to
kv/data/MPSCerts/
directory. -
Delete the existing MPS Certificate.
-
In a terminal, run the following command.
kubectl rollout restart deployment mps
-
A new, correct MPS Cert should be generated.
-
Go back to the webserver in your browser.
https://<Your-AWS-FQDN>:4433
-
Verify the
Issued to:
field is no longer NaN/blank and now shows the correct FQDN. -
Continue to Next Steps section.
-
Next Steps¶
Visit the Sample Web UI using the FQDN name and Continue from the Get Started steps.