Documentation has been created on best effort so some parts may be missing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➜ terraform apply > tflog.txt | |
2025-06-13T14:50:19.298+0100 [INFO] Terraform version: 1.11.4 | |
2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/go-tfe v1.70.0 | |
2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/hcl/v2 v2.23.0 | |
2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/hashicorp/terraform-svchost v0.1.1 | |
2025-06-13T14:50:19.299+0100 [DEBUG] using github.com/zclconf/go-cty v1.16.0 | |
2025-06-13T14:50:19.299+0100 [INFO] Go runtime version: go1.23.3 | |
2025-06-13T14:50:19.299+0100 [INFO] CLI args: []string{"terraform", "apply"} | |
2025-06-13T14:50:19.299+0100 [DEBUG] Attempting to open CLI config file: /Users/bysd/.terraformrc | |
2025-06-13T14:50:19.299+0100 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: sleeper | |
spec: | |
containers: | |
- name: alpine | |
image: alpine:latest | |
# Just spin & wait forever | |
command: [ "/bin/sh", "-c", "--" ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## deployment.yml | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: psc-ilb | |
spec: | |
replicas: 3 | |
selector: | |
matchLabels: | |
app: psc-ilb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
╷ | |
│ Error: Error waiting to create Connector: Error waiting for Creating Connector: Error code 3, message: Operation failed: VPC Access did not have permission to resolve the subnet or the provided subnet does not exist. | |
│ | |
│ with google_vpc_access_connector.connector, | |
│ on vpc-connector.tf line 4, in resource "google_vpc_access_connector" "connector": | |
│ 4: resource "google_vpc_access_connector" "connector" { | |
│ | |
╵ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
terraform { | |
} | |
backend "s3" { | |
endpoint = "https://s3.uk-1.wasabisys.com" | |
region = "eu-west-1" | |
bucket = "<bucket-name>" | |
key = "<path/to/file>/terraform.tfstate" | |
skip_credentials_validation = true | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mariadb: | |
image: mariadb:latest | |
restart: always | |
hostname: "mariadb" | |
command: "mysqld --init-file /data/application/init.sql" | |
volumes: | |
- mariadb-data:/var/lib/mysql | |
- ./init.sql:/data/application/init.sql | |
ports: | |
- '3306:3306' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "1.0" | |
stages: | |
- "setup" | |
- "mkdocs-build" | |
- "docker-build" | |
- "deploy" | |
steps: | |
clone: | |
title: "Cloning repository" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
site_name: Portfolio | |
site_dir: /output/ | |
#site_dir: ../docker/test/content/ | |
markdown_extensions: | |
- admonition | |
- pymdownx.details | |
- pymdownx.superfences | |
- attr_list | |
- md_in_html | |
theme: |
NewerOlder