-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ocp-test: add missing kubevirt manifests
The default install of the kubevirt/cnv operator seems to be missing several manifests that should be in the default namespace. Adding them to the nerc-ocp-test overlay for now until we hear back from RH support on whether these should come out of the box or if we're expected to configure these ourselves.
- Loading branch information
Showing
10 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
cluster-scope/base/core/configmaps/kubevirt/configmap-ui-settings.yaml
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,16 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: kubevirt-ui-features | ||
namespace: default | ||
data: | ||
autocomputeCPULimitsEnabled: "false" | ||
autocomputeCPULimitsPreviewEnabled: "false" | ||
automaticSubscriptionActivationKey: "" | ||
automaticSubscriptionOrganizationId: "" | ||
disabledGuestSystemLogsAccess: "false" | ||
kubevirtApiserverProxy: "true" | ||
loadBalancerEnabled: "false" | ||
nodePortAddress: "" | ||
nodePortEnabled: "false" |
8 changes: 8 additions & 0 deletions
8
cluster-scope/base/core/configmaps/kubevirt/configmap-user-settings.yaml
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,8 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: kubevirt-user-settings | ||
namespace: default | ||
data: | ||
ignored_placeholder: '' |
5 changes: 5 additions & 0 deletions
5
cluster-scope/base/core/configmaps/kubevirt/kustomization.yaml
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,5 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- configmap-ui-settings.yaml | ||
- configmap-user-settings.yaml |
5 changes: 5 additions & 0 deletions
5
cluster-scope/base/rbac.authorization.k8s.io/rolebindings/kubevirt/kustomization.yaml
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,5 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- rolebinding-kubevirt-ui-features-reader.yaml | ||
- rolebinding-kubevirt-user-settings-reader.yaml |
14 changes: 14 additions & 0 deletions
14
...c.authorization.k8s.io/rolebindings/kubevirt/rolebinding-kubevirt-ui-features-reader.yaml
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,14 @@ | ||
--- | ||
kind: RoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kubevirt-ui-features-reader-binding | ||
namespace: default | ||
subjects: | ||
- kind: Group | ||
apiGroup: rbac.authorization.k8s.io | ||
name: 'system:authenticated' | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: kubevirt-ui-features-reader |
14 changes: 14 additions & 0 deletions
14
...authorization.k8s.io/rolebindings/kubevirt/rolebinding-kubevirt-user-settings-reader.yaml
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,14 @@ | ||
--- | ||
kind: RoleBinding | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kubevirt-user-settings-reader-binding | ||
namespace: default | ||
subjects: | ||
- kind: Group | ||
apiGroup: rbac.authorization.k8s.io | ||
name: 'system:authenticated' | ||
roleRef: | ||
apiGroup: rbac.authorization.k8s.io | ||
kind: Role | ||
name: kubevirt-user-settings-reader |
5 changes: 5 additions & 0 deletions
5
cluster-scope/base/rbac.authorization.k8s.io/roles/kubevirt/kustomization.yaml
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,5 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- role-kubevirt-ui-features-reader.yaml | ||
- role-kubevirt-user-settings-reader.yaml |
17 changes: 17 additions & 0 deletions
17
...scope/base/rbac.authorization.k8s.io/roles/kubevirt/role-kubevirt-ui-features-reader.yaml
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,17 @@ | ||
--- | ||
kind: Role | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kubevirt-ui-features-reader | ||
namespace: default | ||
rules: | ||
- verbs: | ||
- list | ||
- get | ||
- watch | ||
apiGroups: | ||
- '' | ||
resources: | ||
- configmaps | ||
resourceNames: | ||
- kubevirt-ui-features |
18 changes: 18 additions & 0 deletions
18
...ope/base/rbac.authorization.k8s.io/roles/kubevirt/role-kubevirt-user-settings-reader.yaml
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,18 @@ | ||
--- | ||
kind: Role | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
metadata: | ||
name: kubevirt-user-settings-reader | ||
namespace: default | ||
rules: | ||
- verbs: | ||
- list | ||
- get | ||
- update | ||
- patch | ||
apiGroups: | ||
- '' | ||
resources: | ||
- configmaps | ||
resourceNames: | ||
- kubevirt-user-settings |
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