mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-03-09 11:47:47 +03:00
Update kube-ovn to 1.7.1
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
b0fcc1ad1d
commit
d5cbb19b39
@@ -243,24 +243,34 @@ spec:
|
||||
spec:
|
||||
type: object
|
||||
properties:
|
||||
id:
|
||||
type: integer
|
||||
minimum: 0
|
||||
maximum: 4095
|
||||
provider:
|
||||
type: string
|
||||
vlanId:
|
||||
type: integer
|
||||
description: Deprecated in favor of id
|
||||
providerInterfaceName:
|
||||
type: string
|
||||
logicalInterfaceName:
|
||||
type: string
|
||||
subnet:
|
||||
type: string
|
||||
description: Deprecated in favor of provider
|
||||
required:
|
||||
- provider
|
||||
status:
|
||||
type: object
|
||||
properties:
|
||||
subnets:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
additionalPrinterColumns:
|
||||
- name: VlanID
|
||||
- name: ID
|
||||
type: string
|
||||
jsonPath: .spec.vlanId
|
||||
- name: ProviderInterfaceName
|
||||
jsonPath: .spec.id
|
||||
- name: Provider
|
||||
type: string
|
||||
jsonPath: .spec.providerInterfaceName
|
||||
- name: Subnet
|
||||
type: string
|
||||
jsonPath: .spec.subnet
|
||||
jsonPath: .spec.provider
|
||||
scope: Cluster
|
||||
names:
|
||||
plural: vlans
|
||||
@@ -271,6 +281,83 @@ spec:
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: provider-networks.kubeovn.io
|
||||
spec:
|
||||
group: kubeovn.io
|
||||
versions:
|
||||
- name: v1
|
||||
served: true
|
||||
storage: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
properties:
|
||||
spec:
|
||||
type: object
|
||||
properties:
|
||||
defaultInterface:
|
||||
type: string
|
||||
customInterfaces:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
interface:
|
||||
type: string
|
||||
nodes:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
excludeNodes:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
required:
|
||||
- defaultInterface
|
||||
status:
|
||||
type: object
|
||||
properties:
|
||||
readyNodes:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
vlans:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
conditions:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
node:
|
||||
type: string
|
||||
type:
|
||||
type: string
|
||||
status:
|
||||
type: string
|
||||
reason:
|
||||
type: string
|
||||
message:
|
||||
type: string
|
||||
lastUpdateTime:
|
||||
type: string
|
||||
lastTransitionTime:
|
||||
type: string
|
||||
additionalPrinterColumns:
|
||||
- name: DefaultInterface
|
||||
type: string
|
||||
jsonPath: .spec.defaultInterface
|
||||
scope: Cluster
|
||||
names:
|
||||
plural: provider-networks
|
||||
singular: provider-network
|
||||
kind: ProviderNetwork
|
||||
listKind: ProviderNetworkList
|
||||
---
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: vpcs.kubeovn.io
|
||||
spec:
|
||||
|
||||
Reference in New Issue
Block a user