-
Sheogorath authored
This patch adds the first iteration of the terraform definitions required to deploy a Kubernetes cluster on Hetzner Cloud. It installs the 3 node infrastructure and still needs quite some work, but so far, it's a solid start. It's heavily inspired by `hcloud_okd4`, that much, that is reuses the entire hcloud_instance module from there, as well as various concepts. References: https://github.com/slauger/hcloud-okd4 https://git.shivering-isles.com/github-mirror/slauger/hcloud-okd4
Sheogorath authoredThis patch adds the first iteration of the terraform definitions required to deploy a Kubernetes cluster on Hetzner Cloud. It installs the 3 node infrastructure and still needs quite some work, but so far, it's a solid start. It's heavily inspired by `hcloud_okd4`, that much, that is reuses the entire hcloud_instance module from there, as well as various concepts. References: https://github.com/slauger/hcloud-okd4 https://git.shivering-isles.com/github-mirror/slauger/hcloud-okd4
.gitignore 1.69 KiB
*_old
# Created by https://www.toptal.com/developers/gitignore/api/terraform,ansible,vim,git
# Edit at https://www.toptal.com/developers/gitignore?templates=terraform,ansible,vim,git
### Ansible ###
*.retry
### Git ###
# Created by git for backups. To disable backups in Git:
# $ git config --global mergetool.keepBackup false
*.orig
# Created by git when using merge tools for conflicts
*.BACKUP.*
*.BASE.*
*.LOCAL.*
*.REMOTE.*
*_BACKUP_*.txt
*_BASE_*.txt
*_LOCAL_*.txt
*_REMOTE_*.txt
### Terraform ###
# Local .terraform directories
**/.terraform/*
# .tfstate files
*.tfstate
*.tfstate.*
# Crash log files
crash.log
# Exclude all .tfvars files, which are likely to contain sentitive data, such as
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
#
*.tfvars
# Ignore override files as they are usually used to override resources locally and so
# are not checked in
override.tf
override.tf.json
*_override.tf
*_override.tf.json
# Include override files you do wish to add to version control using negated pattern
# !example_override.tf
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
# example: *tfplan*
# Ignore CLI configuration files
.terraformrc
terraform.rc
### Vim ###
# Swap
[._]*.s[a-v][a-z]
!*.svg # comment out if you don't need vector files
[._]*.sw[a-p]
[._]s[a-rt-v][a-z]
[._]ss[a-gi-z]
[._]sw[a-p]
# Session
Session.vim
Sessionx.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Persistent undo
[._]*.un~
# End of https://www.toptal.com/developers/gitignore/api/terraform,ansible,vim,git