mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-21 11:30:34 +00:00
Compare commits
14
Commits
v0.11.1
...
release-0.11
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
929a180445 | ||
|
|
8f30de30c0 | ||
|
|
5ab8347f4f | ||
|
|
3dd6eeb961 | ||
|
|
85bc80cbe4 | ||
|
|
cdc0e0e0c5 | ||
|
|
6250b283fa | ||
|
|
ed33b07bd9 | ||
|
|
f1410811d7 | ||
|
|
648dbeacb3 | ||
|
|
2a4213f768 | ||
|
|
0f97bc9c11 | ||
|
|
36945da91c | ||
|
|
dfc0280658 |
@@ -16,12 +16,12 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
cable_driver: ['libreswan', 'wireguard', 'vxlan']
|
cable_driver: ['libreswan', 'wireguard', 'vxlan']
|
||||||
globalnet: ['', 'globalnet']
|
globalnet: ['', 'globalnet']
|
||||||
k8s_version: ['1.17']
|
k8s_version: ['1.19']
|
||||||
lighthouse: ['', 'lighthouse']
|
lighthouse: ['', 'lighthouse']
|
||||||
include:
|
include:
|
||||||
- k8s_version: '1.18'
|
|
||||||
- k8s_version: '1.19'
|
|
||||||
- k8s_version: '1.20'
|
- k8s_version: '1.20'
|
||||||
|
- k8s_version: '1.21'
|
||||||
|
- k8s_version: '1.22'
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||||
|
|||||||
+3
-1
@@ -1 +1,3 @@
|
|||||||
* @mangelajo @Oats87 @skitt @sridhargaddam @tpantelis
|
# Auto-generated, do not edit; see CODEOWNERS.in
|
||||||
|
* @Oats87 @skitt @sridhargaddam @tpantelis
|
||||||
|
*.md @dfarrell07 @Oats87 @skitt @sridhargaddam @tpantelis
|
||||||
|
|||||||
@@ -0,0 +1,5 @@
|
|||||||
|
@dfarrell07 *.md
|
||||||
|
@Oats87 *
|
||||||
|
@skitt *
|
||||||
|
@sridhargaddam *
|
||||||
|
@tpantelis *
|
||||||
@@ -21,7 +21,7 @@ override DEPLOY_ARGS += $(CLUSTER_SETTINGS_FLAG) --deploytool helm
|
|||||||
export DEPLOY_ARGS
|
export DEPLOY_ARGS
|
||||||
GH_URL=https://submariner-io.github.io/submariner-charts/charts
|
GH_URL=https://submariner-io.github.io/submariner-charts/charts
|
||||||
CHARTS_DIR=charts
|
CHARTS_DIR=charts
|
||||||
CHARTS_VERSION=0.11.0
|
CHARTS_VERSION=0.11.2
|
||||||
HELM_DOCS_VERSION=0.15.0
|
HELM_DOCS_VERSION=0.15.0
|
||||||
REPO_URL=$(shell git config remote.origin.url)
|
REPO_URL=$(shell git config remote.origin.url)
|
||||||
|
|
||||||
|
|||||||
@@ -1,97 +1,333 @@
|
|||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: clusters.submariner.io
|
name: clusters.submariner.io
|
||||||
spec:
|
spec:
|
||||||
group: submariner.io
|
group: submariner.io
|
||||||
version: v1
|
|
||||||
names:
|
names:
|
||||||
kind: Cluster
|
kind: Cluster
|
||||||
|
listKind: ClusterList
|
||||||
plural: clusters
|
plural: clusters
|
||||||
|
singular: cluster
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
|
versions:
|
||||||
|
- name: v1
|
||||||
|
schema:
|
||||||
|
openAPIV3Schema:
|
||||||
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
description: 'APIVersion defines the versioned schema of this representation
|
||||||
|
of an object. Servers should convert recognized schemas to the latest
|
||||||
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||||
|
type: string
|
||||||
|
kind:
|
||||||
|
description: 'Kind is a string value representing the REST resource this
|
||||||
|
object represents. Servers may infer this from the endpoint the client
|
||||||
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||||
|
type: string
|
||||||
|
metadata:
|
||||||
|
type: object
|
||||||
|
spec:
|
||||||
|
properties:
|
||||||
|
cluster_cidr:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
cluster_id:
|
||||||
|
type: string
|
||||||
|
color_codes:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
global_cidr:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
service_cidr:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- cluster_cidr
|
||||||
|
- cluster_id
|
||||||
|
- color_codes
|
||||||
|
- global_cidr
|
||||||
|
- service_cidr
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- spec
|
||||||
|
type: object
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
status:
|
||||||
|
acceptedNames:
|
||||||
|
kind: ""
|
||||||
|
plural: ""
|
||||||
|
conditions: []
|
||||||
|
storedVersions: []
|
||||||
---
|
---
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: endpoints.submariner.io
|
name: endpoints.submariner.io
|
||||||
spec:
|
spec:
|
||||||
group: submariner.io
|
group: submariner.io
|
||||||
version: v1
|
|
||||||
names:
|
names:
|
||||||
kind: Endpoint
|
kind: Endpoint
|
||||||
|
listKind: EndpointList
|
||||||
plural: endpoints
|
plural: endpoints
|
||||||
|
singular: endpoint
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
|
versions:
|
||||||
|
- name: v1
|
||||||
|
schema:
|
||||||
|
openAPIV3Schema:
|
||||||
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
description: 'APIVersion defines the versioned schema of this representation
|
||||||
|
of an object. Servers should convert recognized schemas to the latest
|
||||||
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||||
|
type: string
|
||||||
|
kind:
|
||||||
|
description: 'Kind is a string value representing the REST resource this
|
||||||
|
object represents. Servers may infer this from the endpoint the client
|
||||||
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||||
|
type: string
|
||||||
|
metadata:
|
||||||
|
type: object
|
||||||
|
spec:
|
||||||
|
properties:
|
||||||
|
backend:
|
||||||
|
type: string
|
||||||
|
backend_config:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
cable_name:
|
||||||
|
type: string
|
||||||
|
cluster_id:
|
||||||
|
type: string
|
||||||
|
healthCheckIP:
|
||||||
|
type: string
|
||||||
|
hostname:
|
||||||
|
type: string
|
||||||
|
nat_enabled:
|
||||||
|
type: boolean
|
||||||
|
private_ip:
|
||||||
|
type: string
|
||||||
|
public_ip:
|
||||||
|
type: string
|
||||||
|
subnets:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- backend
|
||||||
|
- cable_name
|
||||||
|
- cluster_id
|
||||||
|
- hostname
|
||||||
|
- nat_enabled
|
||||||
|
- private_ip
|
||||||
|
- public_ip
|
||||||
|
- subnets
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- spec
|
||||||
|
type: object
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
status:
|
||||||
|
acceptedNames:
|
||||||
|
kind: ""
|
||||||
|
plural: ""
|
||||||
|
conditions: []
|
||||||
|
storedVersions: []
|
||||||
---
|
---
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
metadata:
|
metadata:
|
||||||
name: gateways.submariner.io
|
name: gateways.submariner.io
|
||||||
spec:
|
spec:
|
||||||
group: submariner.io
|
group: submariner.io
|
||||||
version: v1
|
|
||||||
names:
|
names:
|
||||||
kind: Gateway
|
kind: Gateway
|
||||||
|
listKind: GatewayList
|
||||||
plural: gateways
|
plural: gateways
|
||||||
|
singular: gateway
|
||||||
scope: Namespaced
|
scope: Namespaced
|
||||||
additionalPrinterColumns:
|
versions:
|
||||||
- name: ha-status
|
- additionalPrinterColumns:
|
||||||
|
- description: High availability status of the Gateway
|
||||||
|
jsonPath: .status.haStatus
|
||||||
|
name: HA Status
|
||||||
type: string
|
type: string
|
||||||
description: High Availability Status of the Gateway
|
name: v1
|
||||||
JSONPath: .status.haStatus
|
schema:
|
||||||
---
|
openAPIV3Schema:
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
properties:
|
||||||
kind: CustomResourceDefinition
|
apiVersion:
|
||||||
metadata:
|
description: 'APIVersion defines the versioned schema of this representation
|
||||||
name: multiclusterservices.lighthouse.submariner.io
|
of an object. Servers should convert recognized schemas to the latest
|
||||||
spec:
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||||
group: lighthouse.submariner.io
|
type: string
|
||||||
version: v1
|
kind:
|
||||||
names:
|
description: 'Kind is a string value representing the REST resource this
|
||||||
kind: MultiClusterService
|
object represents. Servers may infer this from the endpoint the client
|
||||||
plural: multiclusterservices
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||||
singular: multiclusterservice
|
type: string
|
||||||
scope: Namespaced
|
metadata:
|
||||||
validation:
|
type: object
|
||||||
openAPIV3Schema:
|
status:
|
||||||
properties:
|
properties:
|
||||||
spec:
|
connections:
|
||||||
properties:
|
items:
|
||||||
clusterServiceInfo:
|
properties:
|
||||||
properties:
|
endpoint:
|
||||||
clusterID:
|
properties:
|
||||||
type: "string"
|
backend:
|
||||||
clusterDomain:
|
type: string
|
||||||
type: "string"
|
backend_config:
|
||||||
serviceIP:
|
additionalProperties:
|
||||||
type: "string"
|
type: string
|
||||||
port:
|
type: object
|
||||||
type: "integer"
|
cable_name:
|
||||||
---
|
type: string
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
cluster_id:
|
||||||
kind: CustomResourceDefinition
|
type: string
|
||||||
metadata:
|
healthCheckIP:
|
||||||
name: serviceexports.lighthouse.submariner.io
|
type: string
|
||||||
spec:
|
hostname:
|
||||||
group: lighthouse.submariner.io
|
type: string
|
||||||
version: v2alpha1
|
nat_enabled:
|
||||||
names:
|
type: boolean
|
||||||
kind: ServiceExport
|
private_ip:
|
||||||
plural: serviceexports
|
type: string
|
||||||
singular: serviceexport
|
public_ip:
|
||||||
scope: Namespaced
|
type: string
|
||||||
---
|
subnets:
|
||||||
apiVersion: apiextensions.k8s.io/v1beta1
|
items:
|
||||||
kind: CustomResourceDefinition
|
type: string
|
||||||
metadata:
|
type: array
|
||||||
name: serviceimports.lighthouse.submariner.io
|
required:
|
||||||
spec:
|
- backend
|
||||||
group: lighthouse.submariner.io
|
- cable_name
|
||||||
version: v2alpha1
|
- cluster_id
|
||||||
names:
|
- hostname
|
||||||
kind: ServiceImport
|
- nat_enabled
|
||||||
plural: serviceimports
|
- private_ip
|
||||||
singular: serviceimport
|
- public_ip
|
||||||
scope: Namespaced
|
- subnets
|
||||||
|
type: object
|
||||||
|
latency:
|
||||||
|
description: LatencySpec describes the round trip time information
|
||||||
|
in nanoseconds for a packet between the gateway pods of two
|
||||||
|
clusters.
|
||||||
|
properties:
|
||||||
|
averageRTT:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
lastRTT:
|
||||||
|
description: TODO This shall be deleted once the operator
|
||||||
|
is using the latest. Using Optional to avoid validation
|
||||||
|
errors when this field is not used.
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
maxRTT:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
minRTT:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
stddevRTT:
|
||||||
|
format: int64
|
||||||
|
type: integer
|
||||||
|
type: object
|
||||||
|
latencyRTT:
|
||||||
|
description: LatencySpec describes the round trip time information
|
||||||
|
for a packet between the gateway pods of two clusters.
|
||||||
|
properties:
|
||||||
|
average:
|
||||||
|
type: string
|
||||||
|
last:
|
||||||
|
type: string
|
||||||
|
max:
|
||||||
|
type: string
|
||||||
|
min:
|
||||||
|
type: string
|
||||||
|
stdDev:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
status:
|
||||||
|
type: string
|
||||||
|
statusMessage:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- endpoint
|
||||||
|
- status
|
||||||
|
- statusMessage
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
haStatus:
|
||||||
|
type: string
|
||||||
|
localEndpoint:
|
||||||
|
properties:
|
||||||
|
backend:
|
||||||
|
type: string
|
||||||
|
backend_config:
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
type: object
|
||||||
|
cable_name:
|
||||||
|
type: string
|
||||||
|
cluster_id:
|
||||||
|
type: string
|
||||||
|
healthCheckIP:
|
||||||
|
type: string
|
||||||
|
hostname:
|
||||||
|
type: string
|
||||||
|
nat_enabled:
|
||||||
|
type: boolean
|
||||||
|
private_ip:
|
||||||
|
type: string
|
||||||
|
public_ip:
|
||||||
|
type: string
|
||||||
|
subnets:
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- backend
|
||||||
|
- cable_name
|
||||||
|
- cluster_id
|
||||||
|
- hostname
|
||||||
|
- nat_enabled
|
||||||
|
- private_ip
|
||||||
|
- public_ip
|
||||||
|
- subnets
|
||||||
|
type: object
|
||||||
|
statusFailure:
|
||||||
|
type: string
|
||||||
|
version:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- connections
|
||||||
|
- haStatus
|
||||||
|
- localEndpoint
|
||||||
|
- statusFailure
|
||||||
|
- version
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- status
|
||||||
|
type: object
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
subresources: {}
|
||||||
|
status:
|
||||||
|
acceptedNames:
|
||||||
|
kind: ""
|
||||||
|
plural: ""
|
||||||
|
conditions: []
|
||||||
|
storedVersions: []
|
||||||
---
|
---
|
||||||
apiVersion: apiextensions.k8s.io/v1
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
kind: CustomResourceDefinition
|
kind: CustomResourceDefinition
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
---
|
---
|
||||||
name: submariner-operator
|
name: submariner-operator
|
||||||
version: 0.11.0
|
version: 0.11.2
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
appVersion: 0.11.0
|
appVersion: 0.11.2
|
||||||
description: Submariner enables direct networking between Pods and Services in different Kubernetes clusters
|
description: Submariner enables direct networking between Pods and Services in different Kubernetes clusters
|
||||||
keywords:
|
keywords:
|
||||||
home: https://submariner-io.github.io/
|
home: https://submariner-io.github.io/
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# submariner-operator
|
# submariner-operator
|
||||||
|
|
||||||
 
|
 
|
||||||
|
|
||||||
Submariner enables direct networking between Pods and Services in different Kubernetes clusters
|
Submariner enables direct networking between Pods and Services in different Kubernetes clusters
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ Submariner enables direct networking between Pods and Services in different Kube
|
|||||||
| broker.server | string | `"example.k8s.apiserver"` | |
|
| broker.server | string | `"example.k8s.apiserver"` | |
|
||||||
| broker.token | string | `"test"` | |
|
| broker.token | string | `"test"` | |
|
||||||
| gateway.image.repository | string | `"quay.io/submariner/submariner-gateway"` | |
|
| gateway.image.repository | string | `"quay.io/submariner/submariner-gateway"` | |
|
||||||
| gateway.image.tag | string | `"0.11.0"` | |
|
| gateway.image.tag | string | `"0.11.2"` | |
|
||||||
| ipsec.debug | bool | `false` | |
|
| ipsec.debug | bool | `false` | |
|
||||||
| ipsec.forceUDPEncaps | bool | `false` | |
|
| ipsec.forceUDPEncaps | bool | `false` | |
|
||||||
| ipsec.ikePort | int | `500` | |
|
| ipsec.ikePort | int | `500` | |
|
||||||
@@ -39,7 +39,7 @@ Submariner enables direct networking between Pods and Services in different Kube
|
|||||||
| operator.affinity | object | `{}` | |
|
| operator.affinity | object | `{}` | |
|
||||||
| operator.image.pullPolicy | string | `"IfNotPresent"` | |
|
| operator.image.pullPolicy | string | `"IfNotPresent"` | |
|
||||||
| operator.image.repository | string | `"quay.io/submariner/submariner-operator"` | |
|
| operator.image.repository | string | `"quay.io/submariner/submariner-operator"` | |
|
||||||
| operator.image.tag | string | `"0.11.0"` | |
|
| operator.image.tag | string | `"0.11.2"` | |
|
||||||
| operator.resources | object | `{}` | |
|
| operator.resources | object | `{}` | |
|
||||||
| operator.tolerations | list | `[]` | |
|
| operator.tolerations | list | `[]` | |
|
||||||
| rbac.create | bool | `true` | |
|
| rbac.create | bool | `true` | |
|
||||||
@@ -64,7 +64,7 @@ Submariner enables direct networking between Pods and Services in different Kube
|
|||||||
| submariner.globalCidr | string | `""` | |
|
| submariner.globalCidr | string | `""` | |
|
||||||
| submariner.healthcheckEnabled | bool | `true` | |
|
| submariner.healthcheckEnabled | bool | `true` | |
|
||||||
| submariner.images.repository | string | `"quay.io/submariner"` | |
|
| submariner.images.repository | string | `"quay.io/submariner"` | |
|
||||||
| submariner.images.tag | string | `"0.11.0"` | |
|
| submariner.images.tag | string | `"0.11.2"` | |
|
||||||
| submariner.natEnabled | bool | `false` | |
|
| submariner.natEnabled | bool | `false` | |
|
||||||
| submariner.serviceCidr | string | `""` | |
|
| submariner.serviceCidr | string | `""` | |
|
||||||
| submariner.serviceDiscovery | bool | `true` | |
|
| submariner.serviceDiscovery | bool | `true` | |
|
||||||
|
|||||||
+887
-760
File diff suppressed because it is too large
Load Diff
@@ -13,7 +13,7 @@ questions:
|
|||||||
type: string
|
type: string
|
||||||
label: Submariner Operator Image Repository
|
label: Submariner Operator Image Repository
|
||||||
- variable: operator.image.tag
|
- variable: operator.image.tag
|
||||||
default: "0.11.0"
|
default: "0.11.2"
|
||||||
description: "Submariner Operator Image Tag"
|
description: "Submariner Operator Image Tag"
|
||||||
type: string
|
type: string
|
||||||
label: Submariner Operator Image Tag
|
label: Submariner Operator Image Tag
|
||||||
@@ -31,7 +31,7 @@ questions:
|
|||||||
type: string
|
type: string
|
||||||
label: Submariner Repository
|
label: Submariner Repository
|
||||||
- variable: submariner.images.tag
|
- variable: submariner.images.tag
|
||||||
default: "0.11.0"
|
default: "0.11.2"
|
||||||
description: "Submariner Images Tag (shared for all non-operator images)"
|
description: "Submariner Images Tag (shared for all non-operator images)"
|
||||||
type: string
|
type: string
|
||||||
label: Submariner Images Tag
|
label: Submariner Images Tag
|
||||||
|
|||||||
@@ -439,6 +439,21 @@ rules:
|
|||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- namespaces
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- monitoring.coreos.com
|
||||||
|
resources:
|
||||||
|
- servicemonitors
|
||||||
|
verbs:
|
||||||
|
- get
|
||||||
|
- create
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
@@ -459,6 +474,29 @@ roleRef:
|
|||||||
name: {{ template "submariner.fullname" . }}
|
name: {{ template "submariner.fullname" . }}
|
||||||
---
|
---
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: submariner-metrics-reader
|
||||||
|
namespace: {{ .Release.Namespace }}
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources: ["pods", "services", "endpoints"]
|
||||||
|
verbs: ["get", "list", "watch"]
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: read-submariner-metrics
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: prometheus-k8s
|
||||||
|
namespace: openshift-monitoring
|
||||||
|
roleRef:
|
||||||
|
kind: Role
|
||||||
|
name: submariner-metrics-reader
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
---
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
kind: ClusterRole
|
kind: ClusterRole
|
||||||
metadata:
|
metadata:
|
||||||
name: {{ template "submariner.fullname" . }}:gateway
|
name: {{ template "submariner.fullname" . }}:gateway
|
||||||
@@ -640,14 +678,25 @@ rules:
|
|||||||
- ""
|
- ""
|
||||||
resources:
|
resources:
|
||||||
- pods
|
- pods
|
||||||
- services
|
|
||||||
- namespaces
|
- namespaces
|
||||||
- nodes
|
- nodes
|
||||||
|
- endpoints
|
||||||
verbs:
|
verbs:
|
||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
- update
|
- update
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- services
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- watch
|
||||||
|
- update
|
||||||
|
- delete
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- submariner.io
|
- submariner.io
|
||||||
resources:
|
resources:
|
||||||
@@ -688,6 +737,15 @@ rules:
|
|||||||
- get
|
- get
|
||||||
- list
|
- list
|
||||||
- watch
|
- watch
|
||||||
|
- apiGroups:
|
||||||
|
- network.openshift.io
|
||||||
|
resources:
|
||||||
|
- service/externalips
|
||||||
|
verbs:
|
||||||
|
- create
|
||||||
|
- get
|
||||||
|
- list
|
||||||
|
- delete
|
||||||
---
|
---
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
apiVersion: rbac.authorization.k8s.io/v1
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ spec:
|
|||||||
brokerK8sApiServerToken: {{ .Values.broker.token }}
|
brokerK8sApiServerToken: {{ .Values.broker.token }}
|
||||||
brokerK8sCA: {{ .Values.broker.ca }}
|
brokerK8sCA: {{ .Values.broker.ca }}
|
||||||
brokerK8sRemoteNamespace: {{ .Values.broker.namespace }}
|
brokerK8sRemoteNamespace: {{ .Values.broker.namespace }}
|
||||||
|
brokerK8sInsecure: {{ .Values.broker.insecure }}
|
||||||
ceIPSecDebug: {{ .Values.ipsec.debug }}
|
ceIPSecDebug: {{ .Values.ipsec.debug }}
|
||||||
ceIPSecForceUDPEncaps: {{ .Values.ipsec.forceUDPEncaps }}
|
ceIPSecForceUDPEncaps: {{ .Values.ipsec.forceUDPEncaps }}
|
||||||
ceIPSecIKEPort: {{ .Values.ipsec.ikePort }}
|
ceIPSecIKEPort: {{ .Values.ipsec.ikePort }}
|
||||||
@@ -32,6 +33,6 @@ spec:
|
|||||||
maxPacketLossCount: 5
|
maxPacketLossCount: 5
|
||||||
{{- with .Values.submariner.coreDNSCustomConfig }}
|
{{- with .Values.submariner.coreDNSCustomConfig }}
|
||||||
coreDNSCustomConfig:
|
coreDNSCustomConfig:
|
||||||
configmapName: .configmapName
|
configmapName: {{ .configmapName }}
|
||||||
namespace: .namespace
|
namespace: {{ .namespace }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ submariner:
|
|||||||
coreDNSCustomConfig: {}
|
coreDNSCustomConfig: {}
|
||||||
images:
|
images:
|
||||||
repository: quay.io/submariner
|
repository: quay.io/submariner
|
||||||
tag: "0.11.0"
|
tag: "0.11.2"
|
||||||
broker:
|
broker:
|
||||||
server: example.k8s.apiserver
|
server: example.k8s.apiserver
|
||||||
token: test
|
token: test
|
||||||
@@ -37,7 +37,7 @@ leadership:
|
|||||||
operator:
|
operator:
|
||||||
image:
|
image:
|
||||||
repository: quay.io/submariner/submariner-operator
|
repository: quay.io/submariner/submariner-operator
|
||||||
tag: "0.11.0"
|
tag: "0.11.2"
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
resources: {}
|
resources: {}
|
||||||
tolerations: []
|
tolerations: []
|
||||||
@@ -45,7 +45,7 @@ operator:
|
|||||||
gateway:
|
gateway:
|
||||||
image:
|
image:
|
||||||
repository: quay.io/submariner/submariner-gateway
|
repository: quay.io/submariner/submariner-gateway
|
||||||
tag: "0.11.0"
|
tag: "0.11.2"
|
||||||
serviceAccounts:
|
serviceAccounts:
|
||||||
operator:
|
operator:
|
||||||
create: true
|
create: true
|
||||||
|
|||||||
Reference in New Issue
Block a user