
This patch introduce OVN Kubernetes support. With OVN Kubernetes (https://github.com/ovn-org/ovn-kubernetes) OVN services control gets more native in Kubernetes way. At this point we only use OVN Kubernetes utilities to run and probe OVN components. We don't use OVN-Kubernetes CNI and CRD features. Depends-On: I2ec8ebb06a1ab7dca6651f5d1d6f34e417021447 Change-Id: I5821149c987070125f14d01c99343b72f234fc36
36 lines
816 B
YAML
36 lines
816 B
YAML
{{/*
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/}}
|
|
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: ovn-ovsdb
|
|
namespace: {{ .Release.Namespace }}
|
|
rules:
|
|
- apiGroups:
|
|
- "apps"
|
|
resources:
|
|
- statefulsets
|
|
verbs:
|
|
- get
|
|
- apiGroups:
|
|
- ""
|
|
resources:
|
|
- pods
|
|
- endpoints
|
|
verbs:
|
|
- list
|
|
- get
|