Merge branch 'development_cryptpad' into development_nile_installers

* development_cryptpad:
  feat(cryptpad): Refactor installer configuration logic
  feat(cryptpad): Refactor installer for dynamic configuration
This commit is contained in:
2025-11-25 18:39:27 +01:00
7 changed files with 87 additions and 36 deletions

View File

@@ -11,13 +11,17 @@ mut installer := cryptpad.get(
create: true
)!
// 2. Install CryptPad.
// This will generate the necessary Kubernetes YAML files and apply them to your cluster.
// installer.install()!
// cryptpad.delete()!
// 2. Configure the installer (all settings are optional with sensible defaults)
// installer.hostname = 'mycryptpad'
// installer.namespace = 'cryptpad'
// 3. Install CryptPad.
// This will generate the necessary Kubernetes YAML files and apply them to your cluster.
installer.install()!
// println('CryptPad installation started.')
// println('You can access it at https://${installer.hostname}.gent01.grid.tf')
// 3. To destroy the deployment, you can run the following:
installer.destroy()!
// 4. To destroy the deployment, you can run the following:
// installer.destroy()!