-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: xiangchun Fu <xfu@redhat.com>
- Loading branch information
1 parent
d8cdc34
commit b5eafcd
Showing
25 changed files
with
720 additions
and
10 deletions.
There are no files selected for viewing
5 changes: 4 additions & 1 deletion
5
api/vendor/github.com/openshift/assisted-service/models/cluster_validation_id.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
api/vendor/github.com/openshift/assisted-service/models/feature_support_level_id.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
api/vendor/github.com/openshift/assisted-service/models/host_validation_id.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package osc | ||
|
||
const ( | ||
Name = "osc" | ||
FullName = "OpenShift Sandboxed Containers" | ||
Namespace = "openshift-sandboxed-containers-operator" | ||
Subscription = "osc-operator" | ||
Source = "redhat-operators" | ||
SourceName = "osc-operator" | ||
OscMinOpenshiftVersion = "4.17.0" | ||
LayeredImageDeployment = "true" | ||
LayeredImageUrl = "quay.io/fidencio/rhcos-layer/ocp-4.16:tdx-20241003-1327" | ||
KernelArgs = "kvm_intel.tdx=1" | ||
// Memory value provided in GiB | ||
MasterMemory int64 = 1 | ||
MasterCPU int64 = 1 | ||
// Memory value provided in GIB | ||
WorkerMemory int64 = 1 | ||
WorkerCPU int64 = 1 | ||
) | ||
|
||
type Config struct { | ||
OscCPUPerHost int64 `envconfig:"Osc_CPU_PER_HOST" default:"1"` | ||
OscMemoryPerHostMiB int64 `envconfig:"Osc_MEMORY_PER_HOST_MIB" default:"1024"` | ||
} |
Oops, something went wrong.