-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to latest helm chart. Allow local helm chart location. Allow local CAPI infrastructure.yaml file. Add Redfish emulator. Signed-off-by: Jacob Weinstock <[email protected]>
- Loading branch information
1 parent
0c82b86
commit 215adc1
Showing
13 changed files
with
113 additions
and
33 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,7 @@ error.log | |
.task | ||
.state | ||
capt/output/ | ||
.vscode/ | ||
.vscode/ | ||
sushy.cert | ||
sushy.key | ||
htpasswd |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ counts: | |
spares: 1 | ||
versions: | ||
capt: 0.5.3 | ||
chart: 0.4.4 | ||
chart: 0.5.0 | ||
kube: v1.28.8 | ||
os: 22.04 | ||
os: | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
SUSHY_EMULATOR_LISTEN_IP = u'0.0.0.0' | ||
SUSHY_EMULATOR_LISTEN_PORT = 443 | ||
SUSHY_EMULATOR_OS_CLOUD = None | ||
SUSHY_EMULATOR_LIBVIRT_URI = u'qemu:///system' | ||
SUSHY_EMULATOR_IGNORE_BOOT_DEVICE = False | ||
SUSHY_EMULATOR_FEATURE_SET = u'full' | ||
SUSHY_EMULATOR_AUTH_FILE = u'/etc/sushy/htpasswd' | ||
SUSHY_EMULATOR_SSL_CERT = u'/etc/sushy/sushy.cert' | ||
SUSHY_EMULATOR_SSL_KEY = u'/etc/sushy/sushy.key' | ||
SUSHY_EMULATOR_BOOT_LOADER_MAP = { | ||
u'UEFI': { | ||
u'x86_64': u'/usr/share/OVMF/OVMF_CODE.fd' | ||
}, | ||
u'Legacy': { | ||
u'x86_64': None | ||
} | ||
} | ||
SUSHY_EMULATOR_VMEDIA_DEVICES = { | ||
u'Cd': { | ||
u'Name': 'Virtual CD', | ||
u'MediaTypes': [ | ||
u'CD', | ||
u'DVD' | ||
] | ||
} | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
providers: | ||
- name: "tinkerbell" | ||
url: "https://github.com/tinkerbell/cluster-api-provider-tinkerbell/releases/v$CAPT_VERSION/infrastructure-components.yaml" | ||
url: "$LOCATION/$CAPT_VERSION/infrastructure-components.yaml" | ||
type: "InfrastructureProvider" | ||
images: | ||
infrastructure-tinkerbell: | ||
tag: v$CAPT_VERSION | ||
tag: $CAPT_VERSION |
This file contains 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
This file contains 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