5 Commits

Author SHA1 Message Date
57199a21e8 chore(release): v0.5.4 (#13)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.5.4

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/clank-node/pulls/13
2025-01-12 14:03:08 +01:00
57fd18ba04 fix: add port for proxy
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 14:02:33 +01:00
539f1ebb35 chore(release): v0.5.3 (#12)
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
chore(release): 0.5.3

Co-authored-by: cuddle-please <bot@cuddle.sh>
Reviewed-on: https://git.front.kjuulh.io/kjuulh/clank-node/pulls/12
2025-01-12 13:57:52 +01:00
696fa83ef0 docs: further docs
All checks were successful
continuous-integration/drone/push Build is passing
2025-01-12 13:52:07 +01:00
e2f49c997c docs: add some docs
Some checks failed
continuous-integration/drone/push Build is failing
2025-01-12 13:44:22 +01:00
4 changed files with 23 additions and 0 deletions

View File

@@ -6,6 +6,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.5.4] - 2025-01-12
### Fixed
- add port for proxy
## [0.5.3] - 2025-01-12
### Added
- add remote node configuration
### Docs
- further docs
- add some docs
## [0.5.2] - 2025-01-11
### Added

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# clank node
Setup up a virtual machine easily, and get an internal hostname for named usage

View File

@@ -46,6 +46,7 @@ resource "null_resource" "node_caddy_template" {
user = "root"
private_key = var.ssh_private
host = var.proxy_ip
port = var.proxy_port
}
provisioner "file" {

View File

@@ -13,6 +13,11 @@ variable "proxy_ip" {
default = "10.0.9.0"
}
variable "proxy_port" {
description = "which port to use for the caddy file"
default = 222
}
variable "proxy_location" {
description = "which where to place the files upstream"
default = "/root/wireguard/nodes"