-
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.
Merge pull request #197 from jacobweinstock/sushy-tools
Update to Tink chart 0.5.0: ## Description <!--- Please describe what this PR is going to change --> Lots of updates/improvements. This adds the ability to specify local file locations for CAPT provider repo and a local directory for installing the helm chart. This also adds a redfish to libvirt emulator so that ISO mounting can be used. ## Why is this needed <!--- Link to issue you have raised --> Fixes: # ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## How are existing users impacted? What migration steps/scripts do we need? <!--- Fixes a bug, unblocks installation, removes a component of the stack etc --> <!--- Requires a DB migration script, etc. --> ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [ ] added unit or e2e tests - [ ] provided instructions on how to upgrade
- Loading branch information
Showing
13 changed files
with
114 additions
and
34 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