├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question.md ├── dependabot.yml ├── pull_request_template.md ├── release-drafter.yml └── workflows │ ├── check-codegen.yml │ ├── clean-cache.yml │ ├── kustomize-validation.yml │ ├── lint.yml │ ├── publish-chart.yml │ ├── publish-docker.yml │ ├── publish-docs.yml │ ├── release-drafter.yml │ ├── reuse.yml │ ├── size-label.yml │ ├── test-chart.yml │ ├── test-e2e.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── LICENSE ├── LICENSES ├── Apache-2.0.txt └── BSD-3-Clause.txt ├── Makefile ├── PROJECT ├── README.md ├── REUSE.toml ├── Tiltfile ├── api └── v1alpha1 │ ├── biossettings_types.go │ ├── biossettingsset_types.go │ ├── biosversion_types.go │ ├── biosversionset_types.go │ ├── bmc_types.go │ ├── bmcsecret_types.go │ ├── bmcsettings_types.go │ ├── bmcversion_types.go │ ├── bmcversionset_types.go │ ├── common_types.go │ ├── constants.go │ ├── doc.go │ ├── endpoint_types.go │ ├── groupversion_info.go │ ├── server_types.go │ ├── serverbootconfiguration_types.go │ ├── serverclaim_types.go │ ├── servermaintenance_types.go │ └── zz_generated.deepcopy.go ├── bmc ├── bmc.go ├── common │ └── helpers.go ├── mock │ ├── main.go │ └── server │ │ ├── data │ │ ├── $metadata │ │ │ └── index.xml │ │ ├── AccountService │ │ │ ├── Accounts │ │ │ │ ├── 1 │ │ │ │ │ ├── Certificates │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── 2 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── ExternalAccountProviders │ │ │ │ ├── ExternalRedfishService │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── OutboundConnections │ │ │ │ ├── 1 │ │ │ │ │ ├── Certificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── ClientCertificates │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── Roles │ │ │ │ ├── Administrator │ │ │ │ │ └── index.json │ │ │ │ ├── Operator │ │ │ │ │ └── index.json │ │ │ │ ├── ReadOnly │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── CertificateService │ │ │ ├── CertificateLocations │ │ │ │ └── index.json │ │ │ ├── GenerateCSRActionInfo │ │ │ │ └── index.json │ │ │ ├── ReplaceCertificateActionInfo │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Chassis │ │ │ ├── 1U │ │ │ │ ├── Controls │ │ │ │ │ ├── CPU1Freq │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PowerLimit │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ └── index.json │ │ │ │ ├── Power │ │ │ │ │ └── index.json │ │ │ │ ├── PowerSubsystem │ │ │ │ │ ├── Batteries │ │ │ │ │ │ ├── Module1 │ │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PowerSupplies │ │ │ │ │ │ ├── Bay1 │ │ │ │ │ │ │ ├── Assembly │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── Bay2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Sensors │ │ │ │ │ ├── AmbientTemp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1InputCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1InputVoltage │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1OutputCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1OutputVoltage │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1StateOfHealth │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Battery1Temp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── CPU1Power │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── CPU1Temp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── CPUFan1 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── CPUFan2 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM1Temp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM2Temp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM3Temp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── ExhaustTemp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── FanBay1 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── FanBay2 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── IntakeTemp │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Energy │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Frequency │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1InputCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1InputPower │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1InputVoltage │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out12V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out12VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out3V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out3VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out5V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS1Out5VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Energy │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Frequency │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2InputCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2InputPower │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2InputVoltage │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out12V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out12VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out3V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out3VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out5V │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── PS2Out5VCurrent │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── TotalEnergy │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── TotalPower │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Thermal │ │ │ │ │ └── index.json │ │ │ │ ├── ThermalSubsystem │ │ │ │ │ ├── Fans │ │ │ │ │ │ ├── Bay1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── Bay2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── CPU1 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── CPU2 │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Heaters │ │ │ │ │ │ ├── CPU1Heater │ │ │ │ │ │ │ ├── Metrics │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── ThermalMetrics │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── TrustedComponents │ │ │ │ │ ├── AC-RoT0 │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ ├── DeviceCert │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── TPM │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ ├── EKCert │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── iRoT0 │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ ├── DeviceCert │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── ComponentIntegrity │ │ │ ├── SS-SPDM-0 │ │ │ │ └── index.json │ │ │ ├── SS-SPDM-1 │ │ │ │ └── index.json │ │ │ ├── TPM-0 │ │ │ │ └── index.json │ │ │ ├── USB-Integrity │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── EventService │ │ │ ├── SubmitTestEventActionInfo │ │ │ │ └── index.json │ │ │ ├── Subscriptions │ │ │ │ ├── 1 │ │ │ │ │ └── index.json │ │ │ │ ├── 2 │ │ │ │ │ └── index.json │ │ │ │ ├── 3 │ │ │ │ │ └── index.json │ │ │ │ ├── 4 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── KeyService │ │ │ ├── NVMeoFKeyPolicies │ │ │ │ ├── 0 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── NVMeoFSecrets │ │ │ │ ├── 0 │ │ │ │ │ └── index.json │ │ │ │ ├── 1 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Managers │ │ │ ├── BMC │ │ │ │ ├── DedicatedNetworkPorts │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── EthernetInterfaces │ │ │ │ │ ├── ToHost │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── eth0 │ │ │ │ │ │ ├── SD │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── HostInterfaces │ │ │ │ │ ├── 1 │ │ │ │ │ │ ├── HostEthernetInterfaces │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── LogServices │ │ │ │ │ ├── Log │ │ │ │ │ │ ├── Entries │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── NetworkProtocol │ │ │ │ │ ├── HTTPS │ │ │ │ │ │ └── Certificates │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── SecurityPolicy │ │ │ │ │ ├── SPDM │ │ │ │ │ │ ├── RevokedCertificates │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── TrustedCertificates │ │ │ │ │ │ │ ├── contoso-root │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── TLS │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ ├── RevokedCertificates │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── TrustedCertificates │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── Server │ │ │ │ │ │ │ ├── RevokedCertificates │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── TrustedCertificates │ │ │ │ │ │ │ ├── contoso-root │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── SerialInterfaces │ │ │ │ │ ├── TTY0 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Registries │ │ │ ├── Base.1.5.0.json │ │ │ ├── Base.1.5.0 │ │ │ │ └── index.json │ │ │ ├── BiosAttributeRegistry.v1_0_0.json │ │ │ ├── BiosAttributeRegistry.v1_0_0 │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── SessionService │ │ │ ├── Sessions │ │ │ │ ├── 1234567890ABCDEF │ │ │ │ │ └── index.json │ │ │ │ ├── 1234567890ABCDEG │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── Systems │ │ │ ├── 437XR1138R2 │ │ │ │ ├── Bios │ │ │ │ │ ├── Settings │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Certificates │ │ │ │ │ ├── contoso-root │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── contoso-subca │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── EthernetInterfaces │ │ │ │ │ ├── 12446A3B0411 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── 12446A3B8890 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── ToManager │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── VLAN1 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── GraphicsControllers │ │ │ │ │ ├── GPU1 │ │ │ │ │ │ ├── Ports │ │ │ │ │ │ │ ├── DisplayPort │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── LogServices │ │ │ │ │ ├── Log1 │ │ │ │ │ │ ├── Entries │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Memory │ │ │ │ │ ├── DIMM1 │ │ │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM2 │ │ │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM3 │ │ │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── DIMM4 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── Processors │ │ │ │ │ ├── CPU1 │ │ │ │ │ │ ├── EnvironmentMetrics │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── CPU2 │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── FPGA1 │ │ │ │ │ │ ├── AccelerationFunctions │ │ │ │ │ │ │ ├── Compression │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── ProcessorMetrics │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── SecureBoot │ │ │ │ │ ├── SecureBootDatabases │ │ │ │ │ │ ├── KEK │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── KEKDefault │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── PK │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── PKDefault │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── db │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── Signatures │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── dbDefault │ │ │ │ │ │ │ ├── Signatures │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── dbx │ │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── Signatures │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ ├── 3 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ ├── dbxDefault │ │ │ │ │ │ │ ├── Signatures │ │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── SimpleStorage │ │ │ │ │ ├── 1 │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── USBControllers │ │ │ │ │ ├── USB1 │ │ │ │ │ │ ├── Ports │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── USB2 │ │ │ │ │ │ ├── Ports │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ ├── 2 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ ├── VirtualMedia │ │ │ │ │ ├── CD1 │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ ├── 1 │ │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ ├── Floppy1 │ │ │ │ │ │ ├── Certificates │ │ │ │ │ │ │ └── index.json │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── TaskService │ │ │ ├── Tasks │ │ │ │ ├── 545 │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── UpdateService │ │ │ ├── ClientCertificates │ │ │ │ ├── 1 │ │ │ │ │ ├── RekeyActionInfo │ │ │ │ │ │ └── index.json │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── FirmwareInventory │ │ │ │ ├── AC-RoT0 │ │ │ │ │ └── index.json │ │ │ │ ├── BIOS │ │ │ │ │ └── index.json │ │ │ │ ├── BMC │ │ │ │ │ └── index.json │ │ │ │ ├── SS │ │ │ │ │ └── index.json │ │ │ │ └── index.json │ │ │ ├── SimpleUpdateActionInfo │ │ │ │ └── index.json │ │ │ └── index.json │ │ ├── explorer_config.json │ │ ├── index.json │ │ └── odata │ │ │ └── index.json │ │ └── server.go ├── mockup.go ├── oem │ ├── dell.go │ ├── hpe.go │ ├── lenovo.go │ └── types.go ├── redfish.go ├── redfish_kube.go └── redfish_local.go ├── cmd ├── bmctools │ ├── cmds │ │ ├── cmds.go │ │ └── reset.go │ └── main.go ├── manager │ └── main.go ├── metalctl │ ├── app │ │ ├── app.go │ │ ├── console.go │ │ ├── move.go │ │ └── visualizer.go │ └── main.go └── metalprobe │ └── main.go ├── config ├── certmanager │ ├── certificate-metrics.yaml │ ├── certificate-webhook.yaml │ ├── issuer.yaml │ ├── kustomization.yaml │ └── kustomizeconfig.yaml ├── crd │ ├── bases │ │ ├── metal.ironcore.dev_biossettings.yaml │ │ ├── metal.ironcore.dev_biossettingssets.yaml │ │ ├── metal.ironcore.dev_biosversions.yaml │ │ ├── metal.ironcore.dev_biosversionsets.yaml │ │ ├── metal.ironcore.dev_bmcs.yaml │ │ ├── metal.ironcore.dev_bmcsecrets.yaml │ │ ├── metal.ironcore.dev_bmcsettings.yaml │ │ ├── metal.ironcore.dev_bmcversions.yaml │ │ ├── metal.ironcore.dev_bmcversionsets.yaml │ │ ├── metal.ironcore.dev_endpoints.yaml │ │ ├── metal.ironcore.dev_serverbootconfigurations.yaml │ │ ├── metal.ironcore.dev_serverclaims.yaml │ │ ├── metal.ironcore.dev_servermaintenances.yaml │ │ └── metal.ironcore.dev_servers.yaml │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ └── patches │ │ ├── cainjection_in_bmcs.yaml │ │ ├── cainjection_in_serverclaims.yaml │ │ ├── webhook_in_bmcs.yaml │ │ └── webhook_in_serverclaims.yaml ├── default │ ├── cert_metrics_manager_patch.yaml │ ├── kustomization.yaml │ ├── manager_metrics_patch.yaml │ ├── manager_webhook_patch.yaml │ ├── metrics_service.yaml │ └── webhookcainjection_patch.yaml ├── dev │ ├── delete_manager_auth_proxy_patch.yaml │ ├── kustomization.yaml │ ├── macdb.yaml │ ├── manager_patch.yaml │ └── registry_service.yaml ├── e2e-metrics-validation │ ├── kustomization.yaml │ └── manager_args_patch.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── network-policy │ └── allow-webhook-traffic.yaml ├── prometheus │ ├── kustomization.yaml │ ├── monitor.yaml │ └── monitor_tls_patch.yaml ├── rbac │ ├── biossettings_admin_role.yaml │ ├── biossettings_editor_role.yaml │ ├── biossettings_viewer_role.yaml │ ├── biossettingsset_admin_role.yaml │ ├── biossettingsset_editor_role.yaml │ ├── biossettingsset_viewer_role.yaml │ ├── biosversion_admin_role.yaml │ ├── biosversion_editor_role.yaml │ ├── biosversion_viewer_role.yaml │ ├── biosversionset_admin_role.yaml │ ├── biosversionset_editor_role.yaml │ ├── biosversionset_viewer_role.yaml │ ├── bmc_editor_role.yaml │ ├── bmc_viewer_role.yaml │ ├── bmcsecret_editor_role.yaml │ ├── bmcsecret_viewer_role.yaml │ ├── bmcsettings_admin_role.yaml │ ├── bmcsettings_editor_role.yaml │ ├── bmcsettings_viewer_role.yaml │ ├── bmcversion_admin_role.yaml │ ├── bmcversion_editor_role.yaml │ ├── bmcversion_viewer_role.yaml │ ├── bmcversionset_admin_role.yaml │ ├── bmcversionset_editor_role.yaml │ ├── bmcversionset_viewer_role.yaml │ ├── endpoint_editor_role.yaml │ ├── endpoint_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── metrics_auth_role.yaml │ ├── metrics_auth_role_binding.yaml │ ├── metrics_reader_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ ├── server_editor_role.yaml │ ├── server_viewer_role.yaml │ ├── serverbootconfiguration_editor_role.yaml │ ├── serverbootconfiguration_viewer_role.yaml │ ├── serverclaim_editor_role.yaml │ ├── serverclaim_viewer_role.yaml │ ├── servermaintenance_admin_role.yaml │ ├── servermaintenance_editor_role.yaml │ ├── servermaintenance_viewer_role.yaml │ └── service_account.yaml ├── redfish-mockup │ ├── kustomization.yaml │ ├── redfish_mockup_endpoint.yaml │ └── redfish_mockup_service.yaml ├── samples │ ├── ignition_secret.yaml │ ├── kustomization.yaml │ ├── metal_v1alpha1_biossettings.yaml │ ├── metal_v1alpha1_biossettingsset.yaml │ ├── metal_v1alpha1_biosversion.yaml │ ├── metal_v1alpha1_biosversionset.yaml │ ├── metal_v1alpha1_bmc.yaml │ ├── metal_v1alpha1_bmcsecret.yaml │ ├── metal_v1alpha1_bmcsettings.yaml │ ├── metal_v1alpha1_bmcversion.yaml │ ├── metal_v1alpha1_bmcversionset.yaml │ ├── metal_v1alpha1_endpoint.yaml │ ├── metal_v1alpha1_server.yaml │ ├── metal_v1alpha1_serverbootconfiguration.yaml │ ├── metal_v1alpha1_serverclaim.yaml │ ├── metal_v1alpha1_servermaintenance.yaml │ ├── ssh_secret.yaml │ └── topology │ │ ├── rack1 │ │ ├── server1.yaml │ │ ├── server10.yaml │ │ ├── server2.yaml │ │ ├── server3.yaml │ │ ├── server4.yaml │ │ ├── server5.yaml │ │ ├── server6.yaml │ │ ├── server7.yaml │ │ ├── server8.yaml │ │ └── server9.yaml │ │ ├── rack2 │ │ ├── server1.yaml │ │ ├── server10.yaml │ │ ├── server2.yaml │ │ ├── server3.yaml │ │ ├── server4.yaml │ │ ├── server5.yaml │ │ ├── server6.yaml │ │ ├── server7.yaml │ │ ├── server8.yaml │ │ └── server9.yaml │ │ └── rack3 │ │ ├── server1.yaml │ │ ├── server10.yaml │ │ ├── server2.yaml │ │ ├── server3.yaml │ │ ├── server4.yaml │ │ ├── server5.yaml │ │ ├── server6.yaml │ │ ├── server7.yaml │ │ ├── server8.yaml │ │ └── server9.yaml └── webhook │ ├── kustomization.yaml │ ├── kustomizeconfig.yaml │ ├── manifests.yaml │ └── service.yaml ├── dist └── chart │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── _helpers.tpl │ ├── certmanager │ │ └── certificate.yaml │ ├── crd │ │ ├── metal.ironcore.dev_biossettings.yaml │ │ ├── metal.ironcore.dev_biossettingssets.yaml │ │ ├── metal.ironcore.dev_biosversions.yaml │ │ ├── metal.ironcore.dev_biosversionsets.yaml │ │ ├── metal.ironcore.dev_bmcs.yaml │ │ ├── metal.ironcore.dev_bmcsecrets.yaml │ │ ├── metal.ironcore.dev_bmcsettings.yaml │ │ ├── metal.ironcore.dev_bmcversions.yaml │ │ ├── metal.ironcore.dev_bmcversionsets.yaml │ │ ├── metal.ironcore.dev_endpoints.yaml │ │ ├── metal.ironcore.dev_serverbootconfigurations.yaml │ │ ├── metal.ironcore.dev_serverclaims.yaml │ │ ├── metal.ironcore.dev_servermaintenances.yaml │ │ └── metal.ironcore.dev_servers.yaml │ ├── manager │ │ └── manager.yaml │ ├── metrics │ │ └── metrics-service.yaml │ ├── network-policy │ │ └── allow-webhook-traffic.yaml │ ├── prometheus │ │ └── monitor.yaml │ ├── rbac │ │ ├── biossettings_admin_role.yaml │ │ ├── biossettings_editor_role.yaml │ │ ├── biossettings_viewer_role.yaml │ │ ├── biossettingsset_admin_role.yaml │ │ ├── biossettingsset_editor_role.yaml │ │ ├── biossettingsset_viewer_role.yaml │ │ ├── biosversion_admin_role.yaml │ │ ├── biosversion_editor_role.yaml │ │ ├── biosversion_viewer_role.yaml │ │ ├── biosversionset_admin_role.yaml │ │ ├── biosversionset_editor_role.yaml │ │ ├── biosversionset_viewer_role.yaml │ │ ├── bmc_editor_role.yaml │ │ ├── bmc_viewer_role.yaml │ │ ├── bmcsecret_editor_role.yaml │ │ ├── bmcsecret_viewer_role.yaml │ │ ├── bmcsettings_admin_role.yaml │ │ ├── bmcsettings_editor_role.yaml │ │ ├── bmcsettings_viewer_role.yaml │ │ ├── bmcversion_admin_role.yaml │ │ ├── bmcversion_editor_role.yaml │ │ ├── bmcversion_viewer_role.yaml │ │ ├── bmcversionset_admin_role.yaml │ │ ├── bmcversionset_editor_role.yaml │ │ ├── bmcversionset_viewer_role.yaml │ │ ├── endpoint_editor_role.yaml │ │ ├── endpoint_viewer_role.yaml │ │ ├── leader_election_role.yaml │ │ ├── leader_election_role_binding.yaml │ │ ├── metrics_auth_role.yaml │ │ ├── metrics_auth_role_binding.yaml │ │ ├── metrics_reader_role.yaml │ │ ├── role.yaml │ │ ├── role_binding.yaml │ │ ├── server_editor_role.yaml │ │ ├── server_viewer_role.yaml │ │ ├── serverbootconfiguration_editor_role.yaml │ │ ├── serverbootconfiguration_viewer_role.yaml │ │ ├── serverclaim_editor_role.yaml │ │ ├── serverclaim_viewer_role.yaml │ │ ├── servermaintenance_admin_role.yaml │ │ ├── servermaintenance_editor_role.yaml │ │ ├── servermaintenance_viewer_role.yaml │ │ └── service_account.yaml │ ├── registry-service │ │ └── service.yaml │ └── webhook │ │ ├── service.yaml │ │ └── webhooks.yaml │ └── values.yaml ├── docs ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── components │ │ └── VPFooter.vue │ │ ├── custom.css │ │ └── index.js ├── Dockerfile ├── README.md ├── api-reference │ └── api.md ├── architecture.md ├── concepts │ ├── biossettings.md │ ├── biossettingsset.md │ ├── biosversion.md │ ├── biosversionset.md │ ├── bmcs.md │ ├── bmcsecrets.md │ ├── bmcsettings.md │ ├── bmcversion.md │ ├── bmcversionset.md │ ├── endpoints.md │ ├── index.md │ ├── serverbootconfigurations.md │ ├── serverclaims.md │ ├── servermaintenance.md │ └── servers.md ├── development │ ├── dev_docs.md │ └── dev_setup.md ├── index.md ├── public │ └── bmwe.png ├── requirements.txt └── usage │ ├── index.md │ ├── installation.md │ └── metalctl.md ├── go.mod ├── go.sum ├── hack ├── api-reference │ ├── config.json │ └── template │ │ ├── members.tpl │ │ ├── pkg.tpl │ │ └── type.tpl ├── boilerplate.go.txt ├── dev-mac-prefixes.yaml ├── license-header.txt ├── metalprobe_launch.sh ├── start-docs.sh └── validate-kustomize.sh ├── internal ├── api │ ├── macdb │ │ └── macdb.go │ └── registry │ │ ├── block.go │ │ ├── cpu.go │ │ ├── dmi.go │ │ ├── lldp.go │ │ ├── lldp_test.go │ │ ├── memory.go │ │ ├── nic.go │ │ ├── pcidev.go │ │ ├── registry.go │ │ └── server.go ├── bmcutils │ └── bmcutils.go ├── cmd │ ├── api │ │ └── api.go │ ├── client │ │ └── client.go │ ├── console │ │ ├── console.go │ │ ├── console_test.go │ │ └── suite_test.go │ ├── move │ │ ├── clients.go │ │ ├── move.go │ │ ├── move_test.go │ │ ├── suite_test.go │ │ └── utils.go │ └── visualizer │ │ ├── index.html │ │ └── visualizer.go ├── controller │ ├── biossettings_controller.go │ ├── biossettings_controller_test.go │ ├── biossettingsset_controller.go │ ├── biossettingsset_controller_test.go │ ├── biosversion_controller.go │ ├── biosversion_controller_test.go │ ├── biosversionset_controller.go │ ├── biosversionset_controller_test.go │ ├── bmc_controller.go │ ├── bmc_controller_test.go │ ├── bmcsecret_controller.go │ ├── bmcsecret_controller_test.go │ ├── bmcsettings_controller.go │ ├── bmcsettings_controller_test.go │ ├── bmcversion_controller.go │ ├── bmcversion_controller_test.go │ ├── bmcversionset_controller.go │ ├── bmcversionset_controller_test.go │ ├── endpoint_controller.go │ ├── endpoint_controller_test.go │ ├── helper.go │ ├── index_fields.go │ ├── server_controller.go │ ├── server_controller_test.go │ ├── serverbootconfiguration_controller.go │ ├── serverbootconfiguration_controller_test.go │ ├── serverclaim_controller.go │ ├── serverclaim_controller_test.go │ ├── servermaintenance_controller.go │ ├── servermaintenance_controller_test.go │ ├── suite_test.go │ └── test_helper.go ├── ignition │ └── default.go ├── probe │ ├── block_darwin.go │ ├── block_linux.go │ ├── cpu.go │ ├── lldp_darwin.go │ ├── lldp_linux.go │ ├── memory_darwin.go │ ├── memory_linux.go │ ├── networking.go │ ├── nics_darwin.go │ ├── nics_linux.go │ ├── pcidev_darwin.go │ ├── pcidev_linux.go │ ├── probe.go │ ├── probe_suite_test.go │ ├── probe_test.go │ ├── system_info_darwin.go │ └── system_info_linux.go ├── registry │ ├── registry_suite_test.go │ ├── server.go │ └── server_test.go └── webhook │ └── v1alpha1 │ ├── biossettings_webhook.go │ ├── biossettings_webhook_test.go │ ├── biosversion_webhook.go │ ├── biosversion_webhook_test.go │ ├── bmcsettings_webhook.go │ ├── bmcsettings_webhook_test.go │ ├── bmcversion_webhook.go │ ├── bmcversion_webhook_test.go │ ├── endpoint_webhook.go │ ├── endpoint_webhook_test.go │ ├── helper.go │ ├── server_webhook.go │ ├── server_webhook_test.go │ └── webhook_suite_test.go ├── package.json ├── scripts └── kind-with-registry.sh └── test ├── data ├── lldpctl_complete.json ├── lldpctl_incomplete.json ├── lldpctl_partial.json └── lldpctl_single.json ├── e2e ├── e2e_suite_test.go └── e2e_test.go └── utils └── utils.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/check-codegen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/check-codegen.yml -------------------------------------------------------------------------------- /.github/workflows/clean-cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/clean-cache.yml -------------------------------------------------------------------------------- /.github/workflows/kustomize-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/kustomize-validation.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/publish-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/publish-chart.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/publish-docker.yml -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.github/workflows/size-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/size-label.yml -------------------------------------------------------------------------------- /.github/workflows/test-chart.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/test-chart.yml -------------------------------------------------------------------------------- /.github/workflows/test-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/test-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/Makefile -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/REUSE.toml -------------------------------------------------------------------------------- /Tiltfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/Tiltfile -------------------------------------------------------------------------------- /api/v1alpha1/biossettings_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/biossettings_types.go -------------------------------------------------------------------------------- /api/v1alpha1/biossettingsset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/biossettingsset_types.go -------------------------------------------------------------------------------- /api/v1alpha1/biosversion_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/biosversion_types.go -------------------------------------------------------------------------------- /api/v1alpha1/biosversionset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/biosversionset_types.go -------------------------------------------------------------------------------- /api/v1alpha1/bmc_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/bmc_types.go -------------------------------------------------------------------------------- /api/v1alpha1/bmcsecret_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/bmcsecret_types.go -------------------------------------------------------------------------------- /api/v1alpha1/bmcsettings_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/bmcsettings_types.go -------------------------------------------------------------------------------- /api/v1alpha1/bmcversion_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/bmcversion_types.go -------------------------------------------------------------------------------- /api/v1alpha1/bmcversionset_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/bmcversionset_types.go -------------------------------------------------------------------------------- /api/v1alpha1/common_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/common_types.go -------------------------------------------------------------------------------- /api/v1alpha1/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/constants.go -------------------------------------------------------------------------------- /api/v1alpha1/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/doc.go -------------------------------------------------------------------------------- /api/v1alpha1/endpoint_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/endpoint_types.go -------------------------------------------------------------------------------- /api/v1alpha1/groupversion_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/groupversion_info.go -------------------------------------------------------------------------------- /api/v1alpha1/server_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/server_types.go -------------------------------------------------------------------------------- /api/v1alpha1/serverbootconfiguration_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/serverbootconfiguration_types.go -------------------------------------------------------------------------------- /api/v1alpha1/serverclaim_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/serverclaim_types.go -------------------------------------------------------------------------------- /api/v1alpha1/servermaintenance_types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/servermaintenance_types.go -------------------------------------------------------------------------------- /api/v1alpha1/zz_generated.deepcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/api/v1alpha1/zz_generated.deepcopy.go -------------------------------------------------------------------------------- /bmc/bmc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/bmc.go -------------------------------------------------------------------------------- /bmc/common/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/common/helpers.go -------------------------------------------------------------------------------- /bmc/mock/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/main.go -------------------------------------------------------------------------------- /bmc/mock/server/data/$metadata/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/$metadata/index.xml -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Accounts/1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Accounts/1/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Accounts/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Accounts/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Accounts/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Accounts/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Accounts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Accounts/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/ExternalAccountProviders/ExternalRedfishService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/ExternalAccountProviders/ExternalRedfishService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/ExternalAccountProviders/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/ExternalAccountProviders/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/ClientCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/OutboundConnections/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/OutboundConnections/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Roles/Administrator/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Roles/Administrator/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Roles/Operator/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Roles/Operator/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Roles/ReadOnly/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Roles/ReadOnly/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/Roles/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/Roles/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/AccountService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/AccountService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/CertificateService/CertificateLocations/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/CertificateService/CertificateLocations/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/CertificateService/GenerateCSRActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/CertificateService/GenerateCSRActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/CertificateService/ReplaceCertificateActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/CertificateService/ReplaceCertificateActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/CertificateService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/CertificateService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Controls/CPU1Freq/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Controls/CPU1Freq/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Controls/PowerLimit/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Controls/PowerLimit/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Controls/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Controls/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Power/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Power/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/Module1/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/Module1/Metrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/Module1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/Module1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/Batteries/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Assembly/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Assembly/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/Metrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/Bay2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/PowerSupplies/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/PowerSubsystem/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/PowerSubsystem/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/AmbientTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/AmbientTemp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1InputCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1InputVoltage/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1OutputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1OutputCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1OutputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1OutputVoltage/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1StateOfHealth/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1StateOfHealth/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/Battery1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/Battery1Temp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/CPU1Power/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/CPU1Power/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/CPU1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/CPU1Temp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/CPUFan1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/CPUFan1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/CPUFan2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/CPUFan2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/DIMM1Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/DIMM1Temp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/DIMM2Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/DIMM2Temp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/DIMM3Temp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/DIMM3Temp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/ExhaustTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/ExhaustTemp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/FanBay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/FanBay1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/FanBay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/FanBay2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/IntakeTemp/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/IntakeTemp/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Energy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Energy/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Frequency/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Frequency/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1InputCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1InputPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1InputPower/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1InputVoltage/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out12V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out12V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out12VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out12VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out3V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out3V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out3VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out3VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out5V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out5V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS1Out5VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS1Out5VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Energy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Energy/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Frequency/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Frequency/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2InputCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2InputCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2InputPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2InputPower/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2InputVoltage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2InputVoltage/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out12V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out12V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out12VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out12VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out3V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out3V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out3VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out3VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out5V/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out5V/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/PS2Out5VCurrent/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/PS2Out5VCurrent/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/TotalEnergy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/TotalEnergy/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/TotalPower/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/TotalPower/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Sensors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Sensors/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/Thermal/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/Thermal/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/Bay1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/Bay1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/Bay2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/Bay2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/CPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/CPU1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/CPU2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/CPU2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Fans/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/Metrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/Metrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/CPU1Heater/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/Heaters/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/ThermalMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/ThermalMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/ThermalSubsystem/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/ThermalSubsystem/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/DeviceCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/DeviceCert/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/AC-RoT0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/Certificates/EKCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/Certificates/EKCert/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/TPM/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/Certificates/DeviceCert/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/Certificates/DeviceCert/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/iRoT0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/TrustedComponents/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/TrustedComponents/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/1U/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/1U/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Chassis/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Chassis/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/ComponentIntegrity/SS-SPDM-0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/ComponentIntegrity/SS-SPDM-0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/ComponentIntegrity/SS-SPDM-1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/ComponentIntegrity/SS-SPDM-1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/ComponentIntegrity/TPM-0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/ComponentIntegrity/TPM-0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/ComponentIntegrity/USB-Integrity/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/ComponentIntegrity/USB-Integrity/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/ComponentIntegrity/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/ComponentIntegrity/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/SubmitTestEventActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/SubmitTestEventActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/Subscriptions/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/Subscriptions/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/Subscriptions/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/Subscriptions/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/Subscriptions/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/Subscriptions/3/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/Subscriptions/4/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/Subscriptions/4/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/Subscriptions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/Subscriptions/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/EventService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/EventService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/NVMeoFKeyPolicies/0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/NVMeoFKeyPolicies/0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/NVMeoFKeyPolicies/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/NVMeoFKeyPolicies/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/NVMeoFSecrets/0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/NVMeoFSecrets/0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/NVMeoFSecrets/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/NVMeoFSecrets/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/NVMeoFSecrets/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/NVMeoFSecrets/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/KeyService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/KeyService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/DedicatedNetworkPorts/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/DedicatedNetworkPorts/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/DedicatedNetworkPorts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/DedicatedNetworkPorts/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/EthernetInterfaces/ToHost/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/EthernetInterfaces/ToHost/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/EthernetInterfaces/eth0/SD/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/EthernetInterfaces/eth0/SD/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/EthernetInterfaces/eth0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/EthernetInterfaces/eth0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/EthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/EthernetInterfaces/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/HostInterfaces/1/HostEthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/HostInterfaces/1/HostEthernetInterfaces/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/HostInterfaces/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/HostInterfaces/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/HostInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/HostInterfaces/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/LogServices/Log/Entries/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/LogServices/Log/Entries/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/LogServices/Log/Entries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/LogServices/Log/Entries/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/LogServices/Log/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/LogServices/Log/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/LogServices/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/LogServices/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/NetworkProtocol/HTTPS/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/NetworkProtocol/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/NetworkProtocol/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/RevokedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/contoso-root/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/SPDM/TrustedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Client/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Client/RevokedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Client/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Client/TrustedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/RevokedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/RevokedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/contoso-root/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/TLS/Server/TrustedCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SecurityPolicy/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SecurityPolicy/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SerialInterfaces/TTY0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SerialInterfaces/TTY0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/SerialInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/SerialInterfaces/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/BMC/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/BMC/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Managers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Managers/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Registries/Base.1.5.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Registries/Base.1.5.0.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Registries/Base.1.5.0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Registries/Base.1.5.0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Registries/BiosAttributeRegistry.v1_0_0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Registries/BiosAttributeRegistry.v1_0_0.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Registries/BiosAttributeRegistry.v1_0_0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Registries/BiosAttributeRegistry.v1_0_0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Registries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Registries/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/SessionService/Sessions/1234567890ABCDEF/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/SessionService/Sessions/1234567890ABCDEF/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/SessionService/Sessions/1234567890ABCDEG/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/SessionService/Sessions/1234567890ABCDEG/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/SessionService/Sessions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/SessionService/Sessions/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/SessionService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/SessionService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Bios/Settings/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Bios/Settings/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Bios/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Bios/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Certificates/contoso-root/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Certificates/contoso-root/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Certificates/contoso-subca/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Certificates/contoso-subca/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/12446A3B0411/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/12446A3B0411/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/12446A3B8890/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/12446A3B8890/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/ToManager/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/ToManager/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/VLAN1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/VLAN1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/EthernetInterfaces/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/DisplayPort/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/DisplayPort/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/Ports/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/GPU1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/GraphicsControllers/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/Entries/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/LogServices/Log1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/LogServices/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/LogServices/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM1/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM1/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM2/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM2/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM3/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM3/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM3/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM4/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/DIMM4/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Memory/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Memory/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU1/EnvironmentMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU1/EnvironmentMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/CPU2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/Compression/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/Compression/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/AccelerationFunctions/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/ProcessorMetrics/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/ProcessorMetrics/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/FPGA1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/Processors/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/Processors/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEK/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/KEKDefault/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PK/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/PKDefault/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/3/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/Signatures/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/db/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/Signatures/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbDefault/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/3/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/3/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/Signatures/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbx/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/Signatures/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/dbxDefault/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/SecureBootDatabases/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SecureBoot/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SimpleStorage/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SimpleStorage/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/SimpleStorage/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/SimpleStorage/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/Ports/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/Ports/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/USB2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/USBControllers/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/USBControllers/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/CD1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/Floppy1/Certificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/Floppy1/Certificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/Floppy1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/Floppy1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/VirtualMedia/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/437XR1138R2/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/437XR1138R2/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/Systems/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/Systems/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/TaskService/Tasks/545/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/TaskService/Tasks/545/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/TaskService/Tasks/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/TaskService/Tasks/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/TaskService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/TaskService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/ClientCertificates/1/RekeyActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/ClientCertificates/1/RekeyActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/ClientCertificates/1/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/ClientCertificates/1/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/ClientCertificates/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/ClientCertificates/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/FirmwareInventory/AC-RoT0/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/FirmwareInventory/AC-RoT0/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/FirmwareInventory/BIOS/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/FirmwareInventory/BIOS/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/FirmwareInventory/BMC/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/FirmwareInventory/BMC/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/FirmwareInventory/SS/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/FirmwareInventory/SS/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/FirmwareInventory/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/FirmwareInventory/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/SimpleUpdateActionInfo/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/SimpleUpdateActionInfo/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/UpdateService/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/UpdateService/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/explorer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/explorer_config.json -------------------------------------------------------------------------------- /bmc/mock/server/data/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/index.json -------------------------------------------------------------------------------- /bmc/mock/server/data/odata/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/data/odata/index.json -------------------------------------------------------------------------------- /bmc/mock/server/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mock/server/server.go -------------------------------------------------------------------------------- /bmc/mockup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/mockup.go -------------------------------------------------------------------------------- /bmc/oem/dell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/oem/dell.go -------------------------------------------------------------------------------- /bmc/oem/hpe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/oem/hpe.go -------------------------------------------------------------------------------- /bmc/oem/lenovo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/oem/lenovo.go -------------------------------------------------------------------------------- /bmc/oem/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/oem/types.go -------------------------------------------------------------------------------- /bmc/redfish.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/redfish.go -------------------------------------------------------------------------------- /bmc/redfish_kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/redfish_kube.go -------------------------------------------------------------------------------- /bmc/redfish_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/bmc/redfish_local.go -------------------------------------------------------------------------------- /cmd/bmctools/cmds/cmds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/bmctools/cmds/cmds.go -------------------------------------------------------------------------------- /cmd/bmctools/cmds/reset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/bmctools/cmds/reset.go -------------------------------------------------------------------------------- /cmd/bmctools/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/bmctools/main.go -------------------------------------------------------------------------------- /cmd/manager/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/manager/main.go -------------------------------------------------------------------------------- /cmd/metalctl/app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalctl/app/app.go -------------------------------------------------------------------------------- /cmd/metalctl/app/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalctl/app/console.go -------------------------------------------------------------------------------- /cmd/metalctl/app/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalctl/app/move.go -------------------------------------------------------------------------------- /cmd/metalctl/app/visualizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalctl/app/visualizer.go -------------------------------------------------------------------------------- /cmd/metalctl/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalctl/main.go -------------------------------------------------------------------------------- /cmd/metalprobe/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/cmd/metalprobe/main.go -------------------------------------------------------------------------------- /config/certmanager/certificate-metrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/certmanager/certificate-metrics.yaml -------------------------------------------------------------------------------- /config/certmanager/certificate-webhook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/certmanager/certificate-webhook.yaml -------------------------------------------------------------------------------- /config/certmanager/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/certmanager/issuer.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/certmanager/kustomization.yaml -------------------------------------------------------------------------------- /config/certmanager/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/certmanager/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_biossettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_biossettings.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_biossettingssets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_biossettingssets.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_biosversions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_biosversions.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_biosversionsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_biosversionsets.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_bmcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_bmcs.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_bmcsecrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_bmcsecrets.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_bmcsettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_bmcsettings.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_bmcversions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_bmcversions.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_bmcversionsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_bmcversionsets.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_endpoints.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_serverbootconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_serverbootconfigurations.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_serverclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_serverclaims.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_servermaintenances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_servermaintenances.yaml -------------------------------------------------------------------------------- /config/crd/bases/metal.ironcore.dev_servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/bases/metal.ironcore.dev_servers.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_bmcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/patches/cainjection_in_bmcs.yaml -------------------------------------------------------------------------------- /config/crd/patches/cainjection_in_serverclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/patches/cainjection_in_serverclaims.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_bmcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/patches/webhook_in_bmcs.yaml -------------------------------------------------------------------------------- /config/crd/patches/webhook_in_serverclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/crd/patches/webhook_in_serverclaims.yaml -------------------------------------------------------------------------------- /config/default/cert_metrics_manager_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/cert_metrics_manager_patch.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/manager_metrics_patch.yaml -------------------------------------------------------------------------------- /config/default/manager_webhook_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/manager_webhook_patch.yaml -------------------------------------------------------------------------------- /config/default/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/metrics_service.yaml -------------------------------------------------------------------------------- /config/default/webhookcainjection_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/default/webhookcainjection_patch.yaml -------------------------------------------------------------------------------- /config/dev/delete_manager_auth_proxy_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/dev/delete_manager_auth_proxy_patch.yaml -------------------------------------------------------------------------------- /config/dev/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/dev/kustomization.yaml -------------------------------------------------------------------------------- /config/dev/macdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/dev/macdb.yaml -------------------------------------------------------------------------------- /config/dev/manager_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/dev/manager_patch.yaml -------------------------------------------------------------------------------- /config/dev/registry_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/dev/registry_service.yaml -------------------------------------------------------------------------------- /config/e2e-metrics-validation/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/e2e-metrics-validation/kustomization.yaml -------------------------------------------------------------------------------- /config/e2e-metrics-validation/manager_args_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/e2e-metrics-validation/manager_args_patch.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - manager.yaml 3 | -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/network-policy/allow-webhook-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/network-policy/allow-webhook-traffic.yaml -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/prometheus/kustomization.yaml -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/prometheus/monitor_tls_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/prometheus/monitor_tls_patch.yaml -------------------------------------------------------------------------------- /config/rbac/biossettings_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettings_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/biossettings_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettings_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/biossettings_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettings_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/biossettingsset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettingsset_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/biossettingsset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettingsset_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/biossettingsset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biossettingsset_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversion_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversion_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversion_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversion_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversion_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversion_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversionset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversionset_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversionset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversionset_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/biosversionset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/biosversionset_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmc_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmc_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmc_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmc_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcsecret_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcsecret_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcsecret_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcsecret_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcsettings_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcsettings_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcsettings_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcsettings_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcsettings_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcsettings_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversion_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversion_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversion_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversion_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversion_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversion_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversionset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversionset_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversionset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversionset_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/bmcversionset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/bmcversionset_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/endpoint_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/endpoint_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/endpoint_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/endpoint_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_auth_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/metrics_auth_role.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_auth_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/metrics_auth_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_reader_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/metrics_reader_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/server_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/server_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/server_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/server_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/serverbootconfiguration_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/serverbootconfiguration_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/serverbootconfiguration_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/serverbootconfiguration_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/serverclaim_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/serverclaim_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/serverclaim_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/serverclaim_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/servermaintenance_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/servermaintenance_admin_role.yaml -------------------------------------------------------------------------------- /config/rbac/servermaintenance_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/servermaintenance_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/servermaintenance_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/servermaintenance_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/redfish-mockup/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/redfish-mockup/kustomization.yaml -------------------------------------------------------------------------------- /config/redfish-mockup/redfish_mockup_endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/redfish-mockup/redfish_mockup_endpoint.yaml -------------------------------------------------------------------------------- /config/redfish-mockup/redfish_mockup_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/redfish-mockup/redfish_mockup_service.yaml -------------------------------------------------------------------------------- /config/samples/ignition_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/ignition_secret.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_biossettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_biossettings.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_biossettingsset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_biossettingsset.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_biosversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_biosversion.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_biosversionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_biosversionset.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_bmc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_bmc.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_bmcsecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_bmcsecret.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_bmcsettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_bmcsettings.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_bmcversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_bmcversion.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_bmcversionset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_bmcversionset.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_endpoint.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_server.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_serverbootconfiguration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_serverbootconfiguration.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_serverclaim.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_serverclaim.yaml -------------------------------------------------------------------------------- /config/samples/metal_v1alpha1_servermaintenance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/metal_v1alpha1_servermaintenance.yaml -------------------------------------------------------------------------------- /config/samples/ssh_secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/ssh_secret.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server1.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server10.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server2.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server3.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server4.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server5.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server6.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server7.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server8.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack1/server9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack1/server9.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server1.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server10.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server2.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server3.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server4.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server5.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server6.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server7.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server8.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack2/server9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack2/server9.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server1.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server10.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server2.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server3.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server4.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server5.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server6.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server7.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server8.yaml -------------------------------------------------------------------------------- /config/samples/topology/rack3/server9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/samples/topology/rack3/server9.yaml -------------------------------------------------------------------------------- /config/webhook/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/webhook/kustomization.yaml -------------------------------------------------------------------------------- /config/webhook/kustomizeconfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/webhook/kustomizeconfig.yaml -------------------------------------------------------------------------------- /config/webhook/manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/webhook/manifests.yaml -------------------------------------------------------------------------------- /config/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/config/webhook/service.yaml -------------------------------------------------------------------------------- /dist/chart/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/.helmignore -------------------------------------------------------------------------------- /dist/chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/Chart.yaml -------------------------------------------------------------------------------- /dist/chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /dist/chart/templates/certmanager/certificate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/certmanager/certificate.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_biossettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_biossettings.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_biossettingssets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_biossettingssets.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_biosversions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_biosversions.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_biosversionsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_biosversionsets.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_bmcs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_bmcs.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_bmcsecrets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_bmcsecrets.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_bmcsettings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_bmcsettings.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_bmcversions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_bmcversions.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_bmcversionsets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_bmcversionsets.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_endpoints.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_endpoints.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_serverbootconfigurations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_serverbootconfigurations.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_serverclaims.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_serverclaims.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_servermaintenances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_servermaintenances.yaml -------------------------------------------------------------------------------- /dist/chart/templates/crd/metal.ironcore.dev_servers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/crd/metal.ironcore.dev_servers.yaml -------------------------------------------------------------------------------- /dist/chart/templates/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/manager/manager.yaml -------------------------------------------------------------------------------- /dist/chart/templates/metrics/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/metrics/metrics-service.yaml -------------------------------------------------------------------------------- /dist/chart/templates/network-policy/allow-webhook-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/network-policy/allow-webhook-traffic.yaml -------------------------------------------------------------------------------- /dist/chart/templates/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/prometheus/monitor.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettings_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettings_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettings_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettings_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettings_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettings_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettingsset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettingsset_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettingsset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettingsset_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biossettingsset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biossettingsset_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversion_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversion_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversion_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversion_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversion_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversion_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversionset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversionset_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversionset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversionset_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/biosversionset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/biosversionset_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmc_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmc_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmc_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmc_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcsecret_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcsecret_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcsecret_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcsecret_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcsettings_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcsettings_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcsettings_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcsettings_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcsettings_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcsettings_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversion_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversion_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversion_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversion_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversion_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversion_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversionset_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversionset_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversionset_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversionset_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/bmcversionset_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/bmcversionset_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/endpoint_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/endpoint_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/endpoint_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/endpoint_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/metrics_auth_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/metrics_auth_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/metrics_auth_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/metrics_auth_role_binding.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/metrics_reader_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/metrics_reader_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/role_binding.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/server_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/server_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/server_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/server_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/serverbootconfiguration_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/serverbootconfiguration_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/serverbootconfiguration_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/serverbootconfiguration_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/serverclaim_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/serverclaim_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/serverclaim_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/serverclaim_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/servermaintenance_admin_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/servermaintenance_admin_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/servermaintenance_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/servermaintenance_editor_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/servermaintenance_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/servermaintenance_viewer_role.yaml -------------------------------------------------------------------------------- /dist/chart/templates/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/rbac/service_account.yaml -------------------------------------------------------------------------------- /dist/chart/templates/registry-service/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/registry-service/service.yaml -------------------------------------------------------------------------------- /dist/chart/templates/webhook/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/webhook/service.yaml -------------------------------------------------------------------------------- /dist/chart/templates/webhook/webhooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/templates/webhook/webhooks.yaml -------------------------------------------------------------------------------- /dist/chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/dist/chart/values.yaml -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/VPFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/.vitepress/theme/components/VPFooter.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/.vitepress/theme/index.js -------------------------------------------------------------------------------- /docs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/Dockerfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/api-reference/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/api-reference/api.md -------------------------------------------------------------------------------- /docs/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/architecture.md -------------------------------------------------------------------------------- /docs/concepts/biossettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/biossettings.md -------------------------------------------------------------------------------- /docs/concepts/biossettingsset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/biossettingsset.md -------------------------------------------------------------------------------- /docs/concepts/biosversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/biosversion.md -------------------------------------------------------------------------------- /docs/concepts/biosversionset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/biosversionset.md -------------------------------------------------------------------------------- /docs/concepts/bmcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/bmcs.md -------------------------------------------------------------------------------- /docs/concepts/bmcsecrets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/bmcsecrets.md -------------------------------------------------------------------------------- /docs/concepts/bmcsettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/bmcsettings.md -------------------------------------------------------------------------------- /docs/concepts/bmcversion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/bmcversion.md -------------------------------------------------------------------------------- /docs/concepts/bmcversionset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/bmcversionset.md -------------------------------------------------------------------------------- /docs/concepts/endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/endpoints.md -------------------------------------------------------------------------------- /docs/concepts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/index.md -------------------------------------------------------------------------------- /docs/concepts/serverbootconfigurations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/serverbootconfigurations.md -------------------------------------------------------------------------------- /docs/concepts/serverclaims.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/serverclaims.md -------------------------------------------------------------------------------- /docs/concepts/servermaintenance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/servermaintenance.md -------------------------------------------------------------------------------- /docs/concepts/servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/concepts/servers.md -------------------------------------------------------------------------------- /docs/development/dev_docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/development/dev_docs.md -------------------------------------------------------------------------------- /docs/development/dev_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/development/dev_setup.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/bmwe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/public/bmwe.png -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | # your mkdocs plugins go here 2 | -------------------------------------------------------------------------------- /docs/usage/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/usage/index.md -------------------------------------------------------------------------------- /docs/usage/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/usage/installation.md -------------------------------------------------------------------------------- /docs/usage/metalctl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/docs/usage/metalctl.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/go.sum -------------------------------------------------------------------------------- /hack/api-reference/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/api-reference/config.json -------------------------------------------------------------------------------- /hack/api-reference/template/members.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/api-reference/template/members.tpl -------------------------------------------------------------------------------- /hack/api-reference/template/pkg.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/api-reference/template/pkg.tpl -------------------------------------------------------------------------------- /hack/api-reference/template/type.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/api-reference/template/type.tpl -------------------------------------------------------------------------------- /hack/boilerplate.go.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/boilerplate.go.txt -------------------------------------------------------------------------------- /hack/dev-mac-prefixes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/dev-mac-prefixes.yaml -------------------------------------------------------------------------------- /hack/license-header.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/license-header.txt -------------------------------------------------------------------------------- /hack/metalprobe_launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/metalprobe_launch.sh -------------------------------------------------------------------------------- /hack/start-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/start-docs.sh -------------------------------------------------------------------------------- /hack/validate-kustomize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/hack/validate-kustomize.sh -------------------------------------------------------------------------------- /internal/api/macdb/macdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/macdb/macdb.go -------------------------------------------------------------------------------- /internal/api/registry/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/block.go -------------------------------------------------------------------------------- /internal/api/registry/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/cpu.go -------------------------------------------------------------------------------- /internal/api/registry/dmi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/dmi.go -------------------------------------------------------------------------------- /internal/api/registry/lldp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/lldp.go -------------------------------------------------------------------------------- /internal/api/registry/lldp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/lldp_test.go -------------------------------------------------------------------------------- /internal/api/registry/memory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/memory.go -------------------------------------------------------------------------------- /internal/api/registry/nic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/nic.go -------------------------------------------------------------------------------- /internal/api/registry/pcidev.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/pcidev.go -------------------------------------------------------------------------------- /internal/api/registry/registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/registry.go -------------------------------------------------------------------------------- /internal/api/registry/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/api/registry/server.go -------------------------------------------------------------------------------- /internal/bmcutils/bmcutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/bmcutils/bmcutils.go -------------------------------------------------------------------------------- /internal/cmd/api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/api/api.go -------------------------------------------------------------------------------- /internal/cmd/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/client/client.go -------------------------------------------------------------------------------- /internal/cmd/console/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/console/console.go -------------------------------------------------------------------------------- /internal/cmd/console/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/console/console_test.go -------------------------------------------------------------------------------- /internal/cmd/console/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/console/suite_test.go -------------------------------------------------------------------------------- /internal/cmd/move/clients.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/move/clients.go -------------------------------------------------------------------------------- /internal/cmd/move/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/move/move.go -------------------------------------------------------------------------------- /internal/cmd/move/move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/move/move_test.go -------------------------------------------------------------------------------- /internal/cmd/move/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/move/suite_test.go -------------------------------------------------------------------------------- /internal/cmd/move/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/move/utils.go -------------------------------------------------------------------------------- /internal/cmd/visualizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/visualizer/index.html -------------------------------------------------------------------------------- /internal/cmd/visualizer/visualizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/cmd/visualizer/visualizer.go -------------------------------------------------------------------------------- /internal/controller/biossettings_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biossettings_controller.go -------------------------------------------------------------------------------- /internal/controller/biossettings_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biossettings_controller_test.go -------------------------------------------------------------------------------- /internal/controller/biossettingsset_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biossettingsset_controller.go -------------------------------------------------------------------------------- /internal/controller/biossettingsset_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biossettingsset_controller_test.go -------------------------------------------------------------------------------- /internal/controller/biosversion_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biosversion_controller.go -------------------------------------------------------------------------------- /internal/controller/biosversion_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biosversion_controller_test.go -------------------------------------------------------------------------------- /internal/controller/biosversionset_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biosversionset_controller.go -------------------------------------------------------------------------------- /internal/controller/biosversionset_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/biosversionset_controller_test.go -------------------------------------------------------------------------------- /internal/controller/bmc_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmc_controller.go -------------------------------------------------------------------------------- /internal/controller/bmc_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmc_controller_test.go -------------------------------------------------------------------------------- /internal/controller/bmcsecret_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcsecret_controller.go -------------------------------------------------------------------------------- /internal/controller/bmcsecret_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcsecret_controller_test.go -------------------------------------------------------------------------------- /internal/controller/bmcsettings_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcsettings_controller.go -------------------------------------------------------------------------------- /internal/controller/bmcsettings_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcsettings_controller_test.go -------------------------------------------------------------------------------- /internal/controller/bmcversion_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcversion_controller.go -------------------------------------------------------------------------------- /internal/controller/bmcversion_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcversion_controller_test.go -------------------------------------------------------------------------------- /internal/controller/bmcversionset_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcversionset_controller.go -------------------------------------------------------------------------------- /internal/controller/bmcversionset_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/bmcversionset_controller_test.go -------------------------------------------------------------------------------- /internal/controller/endpoint_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/endpoint_controller.go -------------------------------------------------------------------------------- /internal/controller/endpoint_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/endpoint_controller_test.go -------------------------------------------------------------------------------- /internal/controller/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/helper.go -------------------------------------------------------------------------------- /internal/controller/index_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/index_fields.go -------------------------------------------------------------------------------- /internal/controller/server_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/server_controller.go -------------------------------------------------------------------------------- /internal/controller/server_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/server_controller_test.go -------------------------------------------------------------------------------- /internal/controller/serverbootconfiguration_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/serverbootconfiguration_controller.go -------------------------------------------------------------------------------- /internal/controller/serverbootconfiguration_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/serverbootconfiguration_controller_test.go -------------------------------------------------------------------------------- /internal/controller/serverclaim_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/serverclaim_controller.go -------------------------------------------------------------------------------- /internal/controller/serverclaim_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/serverclaim_controller_test.go -------------------------------------------------------------------------------- /internal/controller/servermaintenance_controller.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/servermaintenance_controller.go -------------------------------------------------------------------------------- /internal/controller/servermaintenance_controller_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/servermaintenance_controller_test.go -------------------------------------------------------------------------------- /internal/controller/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/suite_test.go -------------------------------------------------------------------------------- /internal/controller/test_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/controller/test_helper.go -------------------------------------------------------------------------------- /internal/ignition/default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/ignition/default.go -------------------------------------------------------------------------------- /internal/probe/block_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/block_darwin.go -------------------------------------------------------------------------------- /internal/probe/block_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/block_linux.go -------------------------------------------------------------------------------- /internal/probe/cpu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/cpu.go -------------------------------------------------------------------------------- /internal/probe/lldp_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/lldp_darwin.go -------------------------------------------------------------------------------- /internal/probe/lldp_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/lldp_linux.go -------------------------------------------------------------------------------- /internal/probe/memory_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/memory_darwin.go -------------------------------------------------------------------------------- /internal/probe/memory_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/memory_linux.go -------------------------------------------------------------------------------- /internal/probe/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/networking.go -------------------------------------------------------------------------------- /internal/probe/nics_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/nics_darwin.go -------------------------------------------------------------------------------- /internal/probe/nics_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/nics_linux.go -------------------------------------------------------------------------------- /internal/probe/pcidev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/pcidev_darwin.go -------------------------------------------------------------------------------- /internal/probe/pcidev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/pcidev_linux.go -------------------------------------------------------------------------------- /internal/probe/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/probe.go -------------------------------------------------------------------------------- /internal/probe/probe_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/probe_suite_test.go -------------------------------------------------------------------------------- /internal/probe/probe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/probe_test.go -------------------------------------------------------------------------------- /internal/probe/system_info_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/system_info_darwin.go -------------------------------------------------------------------------------- /internal/probe/system_info_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/probe/system_info_linux.go -------------------------------------------------------------------------------- /internal/registry/registry_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/registry/registry_suite_test.go -------------------------------------------------------------------------------- /internal/registry/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/registry/server.go -------------------------------------------------------------------------------- /internal/registry/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/registry/server_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/biossettings_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/biossettings_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/biossettings_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/biossettings_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/biosversion_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/biosversion_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/biosversion_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/biosversion_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/bmcsettings_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/bmcsettings_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/bmcsettings_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/bmcsettings_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/bmcversion_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/bmcversion_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/bmcversion_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/bmcversion_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/endpoint_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/endpoint_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/endpoint_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/endpoint_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/helper.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/server_webhook.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/server_webhook.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/server_webhook_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/server_webhook_test.go -------------------------------------------------------------------------------- /internal/webhook/v1alpha1/webhook_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/internal/webhook/v1alpha1/webhook_suite_test.go -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/package.json -------------------------------------------------------------------------------- /scripts/kind-with-registry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/scripts/kind-with-registry.sh -------------------------------------------------------------------------------- /test/data/lldpctl_complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/data/lldpctl_complete.json -------------------------------------------------------------------------------- /test/data/lldpctl_incomplete.json: -------------------------------------------------------------------------------- 1 | { 2 | "lldp": {} 3 | } 4 | 5 | -------------------------------------------------------------------------------- /test/data/lldpctl_partial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/data/lldpctl_partial.json -------------------------------------------------------------------------------- /test/data/lldpctl_single.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/data/lldpctl_single.json -------------------------------------------------------------------------------- /test/e2e/e2e_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/e2e/e2e_suite_test.go -------------------------------------------------------------------------------- /test/e2e/e2e_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/e2e/e2e_test.go -------------------------------------------------------------------------------- /test/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ironcore-dev/metal-operator/HEAD/test/utils/utils.go --------------------------------------------------------------------------------