This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# --------------------------------------------------------------------------- | |
# install-ism54_pve.sh – RACADM 11.0 + iSM 5.4.0.0 for Proxmox 8 (root only) | |
# --------------------------------------------------------------------------- | |
set -euo pipefail | |
# --------------------------- CONSTANTS ------------------------------------- | |
DELL_KEY_URL=https://linux.dell.com/repo/pgp_pubkeys/0x1285491434D8786F.asc | |
OPENMANAGE_REPO=http://linux.dell.com/repo/community/openmanage/11000/jammy | |
ISM_REPO=http://linux.dell.com/repo/community/openmanage/iSM/5400/bullseye |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
└── clusters | |
└── dev-cluster | |
├── flux-system | |
│ ├── gotk-components.yaml | |
│ ├── gotk-sync.yaml | |
│ └── kustomization.yaml | |
├── helmcharts | |
│ └── cert-manager | |
│ ├── certificates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: all | |
gather_facts: true | |
become: true | |
become_user: root | |
serial: 1 # Ensures the playbook runs on one server at a time | |
vars: | |
update_results_file: "/home/semaphore/automation-updates.txt" | |
discord_webhook_url: "my-webhook" | |
ansible_command_timeout: 900 |