mirror of
https://github.com/batonogov/learn-devops.git
synced 2025-11-29 00:33:02 +00:00
* Добавлена конфигурация для kube-vip и l2 load balancer * Update gitignore * Добавлены рабочие узлы * Добавлены DNS серверы * Изменены настройки сети * Update readme * Update readme --------- Co-authored-by: Fedor Batonogov <f.batonogov@yandex.ru>
88 lines
2.1 KiB
Plaintext
88 lines
2.1 KiB
Plaintext
# Created by https://www.toptal.com/developers/gitignore/api/terraform
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=terraform
|
|
|
|
### Terraform ###
|
|
# Local .terraform directories
|
|
**/.terraform/*
|
|
|
|
# .tfstate files
|
|
*.tfstate
|
|
*.tfstate.*
|
|
|
|
# Crash log files
|
|
crash.log
|
|
crash.*.log
|
|
|
|
# Exclude all .tfvars files, which are likely to contain sensitive 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
|
|
*.tfvars.json
|
|
|
|
# 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
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/terraform
|
|
|
|
# Created by https://www.toptal.com/developers/gitignore/api/ansible
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=ansible
|
|
|
|
### Ansible ###
|
|
*.retry
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/ansible
|
|
|
|
# Created by https://www.toptal.com/developers/gitignore/api/go
|
|
# Edit at https://www.toptal.com/developers/gitignore?templates=go
|
|
|
|
### Go ###
|
|
# If you prefer the allow list template instead of the deny list, see community template:
|
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
|
#
|
|
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
# vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# End of https://www.toptal.com/developers/gitignore/api/go
|
|
|
|
# Other
|
|
.vscode
|
|
.DS_Store
|
|
ansible/secrets
|
|
talos/controlplane.yaml
|
|
talos/worker.yaml
|
|
talos/secrets.yaml
|
|
talos/talosconfig
|
|
talos/cp*.yaml
|
|
talos/worker*.yaml
|