Skip to content

Conversation

bsctl
Copy link
Member

@bsctl bsctl commented Sep 23, 2025

close #970

Copy link

netlify bot commented Sep 23, 2025

Deploy Preview for kamaji-documentation ready!

Name Link
🔨 Latest commit f1682a2
🔍 Latest deploy log https://app.netlify.com/projects/kamaji-documentation/deploys/68d65808facc6e0007164fae
😎 Deploy Preview https://deploy-preview-971--kamaji-documentation.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@bsctl
Copy link
Member Author

bsctl commented Sep 23, 2025

@outbackdingo

```bash
# The Proxmox VE host
export PROXMOX_URL="https://pve.example:8006"
export PROXMOX_URL='https://pve.example:8006
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export PROXMOX_URL='https://pve.example:8006
export PROXMOX_URL="https://pve.example:8006"

# The Proxmox VE TokenID for authentication
export PROXMOX_TOKEN="clastix@pam\!capi"
export PROXMOX_TOKEN='clastix@pam\!capi'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export PROXMOX_TOKEN='clastix@pam\!capi'
export PROXMOX_TOKEN="clastix@pam\!capi"

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In bash, with double quotes ("), the backslash escapes the exclamation mark, so the value would be clastix@pam!capi without the backslash. However, clusterctl traslates it as clastix@pam\!capi resulting in wrong token. So the correct is use single quote (') to preserve the entire string and without backslash export PROXMOX_TOKEN='clastix@pam!capi'.

# The secret associated with the TokenID
export PROXMOX_SECRET="REDACTED"
export PROXMOX_SECRET='REDACTED'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
export PROXMOX_SECRET='REDACTED'
export PROXMOX_SECRET="REDACTED"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Missing export env vars in capi proxmox sample
3 participants