Skip to content

Instantly share code, notes, and snippets.

@clouditlab
clouditlab / aws.tf
Created April 2, 2023 18:01
Talos using Terraform in AWS
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
version = "~> 3.0"
name = "talos-demo"
cidr = "10.0.0.0/18"
public_subnets = ["10.0.0.0/24"]
azs = ["eu-central-1a"]
}
@clouditlab
clouditlab / itlab-app.yaml
Last active March 12, 2023 17:43
METALLB example
apiVersion: v1
kind: ConfigMap
metadata:
name: itlab-app
data:
nginx.conf: '
events {
}
http {
server {
@clouditlab
clouditlab / itlab-goodbye.yaml
Last active March 7, 2023 19:34
How to Expose Your Applications for External Access Using Traefik as Ingress Controller
apiVersion: v1
kind: ConfigMap
metadata:
name: itlab-goodbye
data:
nginx.conf: '
events {
}
http {
server {