Add Google Cloud K3s infrastructure support
- Add Terraform configuration for GCP instance and storage - Add startup script for K3s installation and configuration - Add pipeline scripts for deployment and management - Add Forgejo deployment manifests and configuration
This commit is contained in:
parent
7384722305
commit
2ab7872af1
30 changed files with 1024 additions and 324 deletions
29
gcloud/tf/scripts/build-gcloud-k3s-pipeline.json
Normal file
29
gcloud/tf/scripts/build-gcloud-k3s-pipeline.json
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
[
|
||||
{
|
||||
"name": "run pre-flight checks",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/pre-flight-checks.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "list gcloud infrastructure",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/list_gloud_infra.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "run tofu",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/run_tofu.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
}
|
||||
]
|
||||
11
gcloud/tf/scripts/cert-manager/install_cert-manager.sh
Executable file
11
gcloud/tf/scripts/cert-manager/install_cert-manager.sh
Executable file
|
|
@ -0,0 +1,11 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if kubectl -n cert-manager get pods 2>/dev/null | grep -q 'Running'; then
|
||||
echo "cert-manager pods already running. Skipping installation."
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
|
||||
|
||||
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.17.2/cert-manager.yaml
|
||||
30
gcloud/tf/scripts/forgejo/create_ingress.sh
Executable file
30
gcloud/tf/scripts/forgejo/create_ingress.sh
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -a
|
||||
|
||||
# read environment variables from .env file
|
||||
# for value of APP_DOMAIN_NAME
|
||||
|
||||
. .env
|
||||
|
||||
if [ -z "$APP_DOMAIN_NAME" ]; then
|
||||
echo "Error: APP_DOMAIN_NAME environment variable is not set. Please set it in the .env file."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get the directory where the script is located
|
||||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
||||
cd "$SCRIPT_DIR" || { echo "Failed to change directory to $SCRIPT_DIR"; exit 1; }
|
||||
# Define the template file path and output file path
|
||||
TEMPLATE_FILE="../../k3s/forgejo/ingress.yaml.template"
|
||||
OUTPUT_FILE="../../k3s/forgejo/ingress.yaml"
|
||||
|
||||
|
||||
# Use envsubst to substitute the APP_DOMAIN_NAME variable into the template
|
||||
envsubst < "$TEMPLATE_FILE" > "$OUTPUT_FILE"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Error: Failed to substitute variables in the template."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Ingress configuration has been created at $OUTPUT_FILE"
|
||||
33
gcloud/tf/scripts/forgejo/create_issuer.sh
Executable file
33
gcloud/tf/scripts/forgejo/create_issuer.sh
Executable file
|
|
@ -0,0 +1,33 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -a
|
||||
|
||||
# read environment variables from .env file
|
||||
# for value of EMAIL
|
||||
|
||||
. .env
|
||||
|
||||
|
||||
# Check if EMAIL environment variable is set
|
||||
if [ -z "$EMAIL" ]; then
|
||||
echo "Error: EMAIL environment variable is not set."
|
||||
echo "Please set the EMAIL variable and try again."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Get the directory where the script is located
|
||||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
||||
cd "$SCRIPT_DIR" || { echo "Failed to change directory to $SCRIPT_DIR"; exit 1; }
|
||||
# Define the template file path and output file path
|
||||
TEMPLATE_FILE="../../k3s/forgejo/issuer.yaml.template"
|
||||
OUTPUT_FILE="../../k3s/forgejo/issuer.yaml"
|
||||
|
||||
|
||||
# Use envsubst to substitute the EMAIL variable into the template
|
||||
envsubst < "$TEMPLATE_FILE" > "$OUTPUT_FILE"
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Error: Failed to substitute variables in the template."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Issuer configuration has been created at $OUTPUT_FILE"
|
||||
45
gcloud/tf/scripts/forgejo/install_forgejo.sh
Executable file
45
gcloud/tf/scripts/forgejo/install_forgejo.sh
Executable file
|
|
@ -0,0 +1,45 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
echo "Installing Forgejo"
|
||||
|
||||
# Get the directory where the script is located
|
||||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
||||
# Define namespace
|
||||
NAMESPACE="forgejo"
|
||||
MANIFESTS_DIR="${SCRIPT_DIR}/../../k3s/forgejo"
|
||||
|
||||
echo "Creating namespace..."
|
||||
if ! kubectl get namespace "${NAMESPACE}" >/dev/null 2>&1; then
|
||||
kubectl create namespace "${NAMESPACE}"
|
||||
else
|
||||
echo "Namespace '${NAMESPACE}' already exists."
|
||||
fi
|
||||
|
||||
echo "Creating PersistentVolumeClaim..."
|
||||
kubectl apply -f ${MANIFESTS_DIR}/pvc.yaml
|
||||
|
||||
|
||||
echo "Creating Service..."
|
||||
kubectl apply -f ${MANIFESTS_DIR}/service.yaml
|
||||
|
||||
|
||||
echo "Creating Deployment..."
|
||||
kubectl apply -f ${MANIFESTS_DIR}/deployment.yaml
|
||||
|
||||
|
||||
echo "Creating Certificate Issuer..."
|
||||
kubectl apply -f ${MANIFESTS_DIR}/issuer.yaml
|
||||
|
||||
|
||||
echo "Creating Ingress..."
|
||||
kubectl apply -f ${MANIFESTS_DIR}/ingress.yaml
|
||||
|
||||
|
||||
echo "Forgejo installation complete."
|
||||
echo "Verify deployment with: kubectl -n ${NAMESPACE} get pods,svc,ingress,pvc"
|
||||
|
||||
exit;
|
||||
|
||||
# Note: The ingressTCP.yaml is for a different application (galene) and should be applied separately
|
||||
# echo "Note: The ingressTCP.yaml is for the galene application and has not been applied."
|
||||
47
gcloud/tf/scripts/install-forgejo-pipeline.json
Normal file
47
gcloud/tf/scripts/install-forgejo-pipeline.json
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
[
|
||||
{
|
||||
"name": "install cert-manager",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"gcloud/tf/scripts/cert-manager/install_cert-manager.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "install traefik",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"gcloud/tf/scripts/install_traefik.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "create forgejo ingress",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/create_ingress.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "create forgejo issuer",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/create_issuer.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
},
|
||||
{
|
||||
"name": "install forgejo",
|
||||
"function": "RunCommand",
|
||||
"params": [
|
||||
"./gcloud/tf/scripts/forgejo/install_forgejo.sh"
|
||||
],
|
||||
"retryCount": 0,
|
||||
"shouldAbort": true
|
||||
}
|
||||
]
|
||||
64
gcloud/tf/scripts/install_traefik.sh
Executable file
64
gcloud/tf/scripts/install_traefik.sh
Executable file
|
|
@ -0,0 +1,64 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Exit immediately if a command exits with a non-zero status.
|
||||
set -e
|
||||
|
||||
TMPFILE=$(mktemp /tmp/traefik-values-XXXXXX.yaml)
|
||||
|
||||
|
||||
cat > "$TMPFILE" <<EOF
|
||||
ingressClass:
|
||||
enabled: true
|
||||
isDefaultClass: true
|
||||
ports:
|
||||
web:
|
||||
port: 80
|
||||
hostPort: 80
|
||||
websecure:
|
||||
port: 443
|
||||
hostPort: 443
|
||||
traefik:
|
||||
port: 9000
|
||||
api:
|
||||
dashboard: true
|
||||
insecure: true
|
||||
ingressRoute:
|
||||
dashboard:
|
||||
enabled: true
|
||||
ping: true
|
||||
log:
|
||||
level: INFO
|
||||
service:
|
||||
enabled: true
|
||||
type: ClusterIP
|
||||
annotations: {}
|
||||
ports:
|
||||
web:
|
||||
port: 80
|
||||
protocol: TCP
|
||||
targetPort: web
|
||||
websecure:
|
||||
port: 443
|
||||
protocol: TCP
|
||||
targetPort: websecure
|
||||
EOF
|
||||
|
||||
|
||||
if helm status traefik --namespace traefik &> /dev/null; then
|
||||
echo "Traefik is already installed in the 'traefik' namespace. Upgrading..."
|
||||
helm upgrade traefik traefik/traefik --namespace traefik -f "$TMPFILE"
|
||||
else
|
||||
echo "Installing Traefik..."
|
||||
helm repo add traefik https://traefik.github.io/charts
|
||||
helm repo update
|
||||
# Using --create-namespace is good practice, though traefik will always exist.
|
||||
helm install traefik traefik/traefik --namespace traefik --create-namespace -f "$TMPFILE"
|
||||
fi
|
||||
|
||||
|
||||
|
||||
# echo
|
||||
# echo "To access the dashboard:"
|
||||
# echo "kubectl port-forward -n traefik \$(kubectl get pods -n traefik -l \"app.kubernetes.io/name=traefik\" -o name) 9000:9000"
|
||||
# echo "Then visit http://localhost:9000/dashboard/ in your browser"
|
||||
|
||||
102
gcloud/tf/scripts/k3s-vm-startup.sh
Normal file
102
gcloud/tf/scripts/k3s-vm-startup.sh
Normal file
|
|
@ -0,0 +1,102 @@
|
|||
#!/bin/bash
|
||||
|
||||
INFCTL_GIT_REPO="https://codeberg.org/headshed/infctl-cli.git"
|
||||
INFCTL_GIT_REPO_BRANCH="feature/gcloud-k3s"
|
||||
INFCTL_INSTALL_DIR="/opt/src"
|
||||
|
||||
# ensure only run once
|
||||
if [[ -f /etc/startup_was_launched ]]; then exit 0; fi
|
||||
|
||||
touch /etc/startup_was_launched
|
||||
|
||||
|
||||
# Format the k3s disk if not already formatted
|
||||
|
||||
# This creates an ext4 filesystem on the specified
|
||||
# disk with no reserved space for root, forces the operation,
|
||||
# fully initializes inode tables and the journal, and enables
|
||||
# discard/TRIM for better performance on SSDs or
|
||||
# thin-provisioned storage.
|
||||
if ! lsblk | grep -q "/var/lib/rancher/k3s"; then
|
||||
mkfs.ext4 -m 0 -F -E lazy_itable_init=0,lazy_journal_init=0,discard /dev/disk/by-id/google-k3s-disk
|
||||
mkdir -p /var/lib/rancher/k3s
|
||||
mount -o discard,defaults /dev/disk/by-id/google-k3s-disk /var/lib/rancher/k3s
|
||||
chmod a+w /var/lib/rancher/k3s
|
||||
fi
|
||||
# A disk named k3s-disk in your Terraform configuration will
|
||||
# appear as /dev/disk/by-id/google-k3s-disk.
|
||||
|
||||
# Format the app-data-disk if not already formatted
|
||||
if ! lsblk | grep -q "/mnt/disks/app-data"; then
|
||||
mkfs.ext4 -m 0 -F -E lazy_itable_init=0,lazy_journal_init=0,discard /dev/disk/by-id/google-app-data-disk
|
||||
mkdir -p /mnt/disks/app-data
|
||||
mount -o discard,defaults /dev/disk/by-id/google-app-data-disk /mnt/disks/app-data
|
||||
chmod a+w /mnt/disks/app-data
|
||||
fi
|
||||
# Similarly, a disk named app-data-disk will appear as /dev/
|
||||
# disk/by-id/google-app-data-disk.
|
||||
|
||||
# Add to /etc/fstab for persistence (only if not already present)
|
||||
if ! grep -q "/var/lib/rancher/k3s" /etc/fstab; then
|
||||
echo "/dev/disk/by-id/google-k3s-disk /var/lib/rancher/k3s ext4 defaults,discard 0 0" >> /etc/fstab
|
||||
fi
|
||||
if ! grep -q "/mnt/disks/app-data" /etc/fstab; then
|
||||
echo "/dev/disk/by-id/google-app-data-disk /mnt/disks/app-data ext4 defaults,discard 0 0" >> /etc/fstab
|
||||
fi
|
||||
|
||||
|
||||
# apt install
|
||||
apt update
|
||||
apt install -y ncdu htop git curl
|
||||
|
||||
# helm install
|
||||
curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
|
||||
chmod 700 get_helm.sh
|
||||
/bin/bash get_helm.sh
|
||||
|
||||
# user bashrc config
|
||||
rc=/home/user/.bashrc
|
||||
{
|
||||
echo "export KUBECONFIG=~/.kube/config"
|
||||
echo "alias l='ls -lah'"
|
||||
echo "alias ll='ls -lh'"
|
||||
echo "alias k=kubectl"
|
||||
echo "export dry='--dry-run=client'"
|
||||
echo "export o='-oyaml'"
|
||||
echo "alias kcd='kubectl config use-context'"
|
||||
echo "source <(kubectl completion bash)"
|
||||
echo "complete -F __start_kubectl k"
|
||||
echo "alias k='kubectl'"
|
||||
} >> $rc
|
||||
|
||||
|
||||
# Install k3s
|
||||
k3s_version="v1.32.8+k3s1"
|
||||
curl -sfL https://get.k3s.io \
|
||||
| \
|
||||
INSTALL_K3S_VERSION="$k3s_version" sh -s - server \
|
||||
--cluster-init \
|
||||
--disable traefik \
|
||||
--disable servicelb
|
||||
|
||||
|
||||
# Set up kubeconfig for the 'user' user
|
||||
mkdir -p /home/user/.kube
|
||||
chown user:user /home/user/.kube
|
||||
chmod 700 /home/user/.kube
|
||||
# Copy the kubeconfig file to the user's home directory
|
||||
# for easier access
|
||||
cp /etc/rancher/k3s/k3s.yaml /home/user/.kube/config
|
||||
chown user:user /home/user/.kube/config
|
||||
|
||||
# install infctl
|
||||
curl -L https://codeberg.org/headshed/infctl-cli/raw/branch/main/install.sh | bash
|
||||
|
||||
# clone infctl repo if not already present
|
||||
if [[ ! -d "$INFCTL_INSTALL_DIR" ]]; then
|
||||
mkdir -p "$INFCTL_INSTALL_DIR"
|
||||
cd ${INFCTL_INSTALL_DIR} || "echo 'Failed to change directory to $INFCTL_INSTALL_DIR' ; exit 1"
|
||||
git clone --branch "$INFCTL_GIT_REPO_BRANCH" "$INFCTL_GIT_REPO" || "echo 'Failed to clone $INFCTL_GIT_REPO' ; exit 1"
|
||||
chown -R user:user "$INFCTL_INSTALL_DIR"
|
||||
fi
|
||||
|
||||
16
gcloud/tf/scripts/list_gloud_infra.sh
Executable file
16
gcloud/tf/scripts/list_gloud_infra.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
. .env
|
||||
|
||||
if [ -z "$PROJECT_NAME" ]; then
|
||||
echo "❌ PROJECT_NAME is not set. Please add PROJECT_NAME=<your_project_name> to your .env file before running this script."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
gcloud compute instances list --project="$PROJECT_NAME" && gcloud compute disks list --project="$PROJECT_NAME" && gcloud compute firewall-rules list --project="$PROJECT_NAME" && gcloud storage buckets list --project="$PROJECT_NAME"
|
||||
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "❌ gcloud is not authenticated, please run 'gcloud auth login' first"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
65
gcloud/tf/scripts/pre-flight-checks.sh
Executable file
65
gcloud/tf/scripts/pre-flight-checks.sh
Executable file
|
|
@ -0,0 +1,65 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
echo "🧪 checking we have tofu insatalled..."
|
||||
if ! command -v tofu &> /dev/null
|
||||
then
|
||||
echo "❌ tofu could not be found, please install it first"
|
||||
echo
|
||||
echo "see https://opentofu.org/docs/intro/install/standalone/"
|
||||
echo
|
||||
echo "and https://opentofu.org/docs/intro/install/ for more details"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✅ tofu is installed,..."
|
||||
echo
|
||||
tofu version
|
||||
echo
|
||||
|
||||
echo "🧪 checking we have gcloud insatalled..."
|
||||
if ! command -v gcloud &> /dev/null
|
||||
then
|
||||
echo "❌ gcloud could not be found, please install it first"
|
||||
echo
|
||||
echo "see https://cloud.google.com/sdk/docs/install"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✅ gcloud is installed,..."
|
||||
echo
|
||||
gcloud version
|
||||
echo
|
||||
|
||||
echo "🧪 checking we have kubectl insatalled..."
|
||||
if ! command -v kubectl &> /dev/null
|
||||
then
|
||||
echo "❌ kubectl could not be found, please install it first"
|
||||
echo
|
||||
echo "see https://kubernetes.io/docs/tasks/tools/install-kubectl-linux/"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "✅ kubectl is installed,..."
|
||||
echo
|
||||
kubectl version --client
|
||||
echo
|
||||
|
||||
echo "🧪 checking we have envsubst insatalled..."
|
||||
if ! command -v envsubst &> /dev/null
|
||||
then
|
||||
echo "❌ envsubst could not be found, please install it first"
|
||||
echo
|
||||
echo "on ubuntu you can install it with: sudo apt-get install -y gettext-base"
|
||||
echo
|
||||
exit 1
|
||||
fi
|
||||
echo "✅ envsubst is installed,..."
|
||||
echo
|
||||
envsubst --version
|
||||
echo
|
||||
|
||||
echo "✅ Pre-flight checks passed. You are ready to proceed 🙂"
|
||||
echo
|
||||
29
gcloud/tf/scripts/run_tofu.sh
Executable file
29
gcloud/tf/scripts/run_tofu.sh
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Get the directory where the script is located
|
||||
SCRIPT_DIR="$(dirname "$(readlink -f "$0")")"
|
||||
cd "$SCRIPT_DIR" || { echo "Failed to change directory to $SCRIPT_DIR"; exit 1; }
|
||||
TF_DIR="../"
|
||||
|
||||
cd "$TF_DIR" || { echo "Failed to change directory to $TF_DIR"; exit 1; }
|
||||
|
||||
if [[ -d ".terraform" && -f ".terraform.lock.hcl" ]]; then
|
||||
echo "✅ Terraform already initialized"
|
||||
# tofu init
|
||||
else
|
||||
echo "⚠️ Initializing Terraform..."
|
||||
tofu init
|
||||
fi
|
||||
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "❌ tofu init failed, please check the output above"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# tofu apply with auto-approve to make it non-interactive
|
||||
tofu apply -auto-approve
|
||||
|
||||
if [[ $? -ne 0 ]]; then
|
||||
echo "❌ tofu apply failed, please check the output above"
|
||||
exit 1
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue