Skip to content

Commit

Permalink
disable debug by default
Browse files Browse the repository at this point in the history
  • Loading branch information
cloudymax committed Oct 28, 2024
1 parent 891ecbb commit 873a311
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/cloud-init/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ apiVersion: v2
name: cloud-init
description: A Helm chart that generates cloud-init config files
type: application
version: 0.2.1
version: 0.2.2
maintainers:
- name: cloudymax
4 changes: 2 additions & 2 deletions charts/cloud-init/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# cloud-init

![Version: 0.2.1](https://img.shields.io/badge/Version-0.2.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

A Helm chart that generates cloud-init config files

Expand All @@ -16,7 +16,7 @@ A Helm chart that generates cloud-init config files
|-----|------|---------|-------------|
| boot_cmd | list | `[]` | Run arbitrary commands early in the boot process See https://cloudinit.readthedocs.io/en/latest/reference/modules.html#bootcmd |
| ca_certs | list | `[]` | Add CA certificates See https://cloudinit.readthedocs.io/en/latest/reference/modules.html#ca-certificates |
| debug | bool | `true` | |
| debug | bool | `false` | when enabled job sleeps to allow user to exec into the container |
| disable_root | bool | `false` | Disable root login over ssh |
| envsubst | list | `[{"value":"friend","var":"USERNAME"},{"value":"cloudymax","var":"GITHUB_USER"}]` | Run envsubst against bootcmd and runcmd fields at the beginning of templating Not an official part of cloid-init |
| hostname | string | `"scrapmetal"` | virtual-machine hostname |
Expand Down
3 changes: 2 additions & 1 deletion charts/cloud-init/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ namespace: kubevirt
# -- Disable root login over ssh
disable_root: false

debug: true
# -- when enabled job sleeps to allow user to exec into the container
debug: false

# -- salt used for password generation
salt: "saltsaltlettuce"
Expand Down

0 comments on commit 873a311

Please sign in to comment.