Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ISSUE-417] Fix CSI deployment via Operator on Openshift #39

Merged
merged 7 commits into from
Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/csi-baremetal-operator/templates/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ spec:
resources:
limits:
cpu: 100m
memory: 30Mi
memory: 100Mi
mishoyama marked this conversation as resolved.
Show resolved Hide resolved
requests:
cpu: 100m
memory: 20Mi
Expand Down
6 changes: 6 additions & 0 deletions charts/csi-baremetal-operator/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ rules:
- "*"
verbs:
- "*"
- apiGroups:
safronovD marked this conversation as resolved.
Show resolved Hide resolved
- config.openshift.io
resources:
- schedulers
verbs:
- "*"
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down
2 changes: 1 addition & 1 deletion pkg/scheduler_patcher_openshift.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
"apiVersion" : "v1",
"extenders": [
{
"urlPrefix": "http://127.0.0.1:$PORT",
"urlPrefix": "http://127.0.0.1:8889",
mishoyama marked this conversation as resolved.
Show resolved Hide resolved
"filterVerb": "filter",
"enableHttps": false,
"nodeCacheCapable": false,
Expand Down