Configuration for deploying a static Jekyll site to an LKE cluster.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
lavenderguitar bb1fd7d9fb Update kube version 2 years ago
charts/site Change to generic domain name (temporary) 2 years ago
manifests Install Kube resource manifest files. 2 years ago
site Docker-ize the static site 2 years ago
terraform Update kube version 2 years ago
.envrc Add Doppler command to pull secrets. 2 years ago
.gitignore Init repo with static site and .gitignore 2 years ago
README.md v1.0.0 2 years ago

README.md

Linode Static Site Infrastructure (in Kube!)

The following configuration will deploy a Linode Kubernetes Cluster and NodeBalancer with Terraform, install the necessary Kubernetes resources to serve a static website, and deploy a Jekyll site using Helm.

The jekyll site provided in this repo is an example and includes a basic Dockerfile and script for building and pushing the images to Dockerhub.

Usage

Hard-mode

Infrastructure

  1. Clone the repo.

  2. Edit the values in .envrc to values appropriate for your project. Run direnv allow once set.

     # The DockerHub repo associated with the image to build.
     export IMGREPO=
    
     # The Linode API key of the account to create the resources.
     # Storing API keys for an account in this fashion is _NOT RECOMMENDED_! Consider using a secrets manager to store this value locally for your project (i.e. doppler).
     export TF_VAR_token=
    
     # This file is created automatically when the infra is created in Terraform.
     export KUBECONFIG=./.kube-config
    
  3. Change to the /terraform directory and create the LKE cluster.

     terraform apply
    
  4. Once the infrastructure has been created, change directory to the root of the project cd .. and check Kubernetes connection.

     kubectl get namespaces
    
  5. Apply the Kubernetes manifest configurations for necessary services. Apply in order!

     # /manifests
     kubectl apply -f nginx-ingress-controller-v4.0.19.yaml
     kubectl apply -f cert-manager-v1.7.2.yaml
     kubectl apply -f cert-manager-clusterissuer.yaml
    
  6. Navigate to the Linode NodeBalancer page, or use the following command, to acquire the Public IP address of the new LoadBalancer.

     kubectl get services
    
  7. Create an A record in your DNS provider using the acquired public IP address.

Site Development

  1. Change to the /site directory. Refer to about.markdown in this directory for information on applying a custom Jekyll theme.

  2. Run ./deploy/docker.sh to build a new image of the site and push it to Dockerhub.

Deploy

  1. Use charts/site/override.yaml to set the necessary values for the project site.

  2. Install the new site. Uses LetsEncrypt Staging setup. Apply override.yaml to apply production certs

     helm install site charts/site --values charts/site/values.yaml 
    

Update the website

  1. If not using latest as your image tag, set the new image version tag using appVersion in /charts/site/Chart.yaml. This may also be set by using image.tag in /charts/site/values.yaml or /charts/site/override.yaml.

  2. Use /site/deploy/docker.sh to build the new image.

  3. Use Helm to perform a rolling upgrade. Value files are read left->right and will overwrite in that order.

     helm upgrade site charts/site -f charts/site/values.yaml -f charts/site/override.yaml
    

Secrets Support

Using this repo requires providing a Linode API key in an environment variable. It is highly recommended to use a secrets manager to pass TF_VAR_token.

If you do not have a password manager, I recommend checking out Doppler. Here are the steps to get started.

  1. Signup for a Doppler account.
  2. Create a project. (example-project is created by default and is not recommended)
  3. Inside one of the new project's environments, create a secret named TOKEN and provide the Linode API key.
  4. Install the Doppler CLI.
  5. Login from any directory: doppler login.
  6. From this project's directory: doppler setup. Choose the project and environment created in step 2.
  7. Uncomment the Doppler line in the provided .envrc.
  8. direnv allow

Improvement Notes

  • If the NGINX Ingress Controller is not destroyed prior to destroying the infrastructure using Terraform, the Linode NodeBalancer will continue to exist within the account. This must be deleted manually. Automation for this process will come with a new version of this project.

  • The kube-config only works properly in the root directory.

  • Automation for the entire infra build process.

    • Image tags need an env var.
    • Helm should use env vars to identify new for deployment.
    • CI/CD pipeline for use in Gitlab/Github/etc.
    • Implement terraform backend support for state management.
  • Add autoscaler support to LKE cluster.

  • CertManager Helm flag did not generate namespace as indicated in the docs. This step had to be manually added to cert-manager-v1.7.2.yaml. This will be a problem for upgrading in the future.