-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update docs from repo source
Signed-off-by: kumahq[bot] <110050114+kumahq[bot]@users.noreply.github.com>
- Loading branch information
1 parent
21c0852
commit f73dd05
Showing
655 changed files
with
95,827 additions
and
0 deletions.
There are no files selected for viewing
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: circuitbreakers.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: CircuitBreaker | ||
listKind: CircuitBreakerList | ||
plural: circuitbreakers | ||
singular: circuitbreaker | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec is the specification of the Kuma CircuitBreaker resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
110 changes: 110 additions & 0 deletions
110
app/assets/2.1.x/raw/crds/kuma.io_containerpatches.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,110 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: containerpatches.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: ContainerPatch | ||
listKind: ContainerPatchList | ||
plural: containerpatches | ||
singular: containerpatch | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ContainerPatch stores a list of patches to apply to init and | ||
sidecar containers. | ||
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 | ||
mesh: | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: ContainerPatchSpec specifies the options available for a | ||
ContainerPatch | ||
properties: | ||
initPatch: | ||
description: InitPatch specifies jsonpatch to apply to an init container. | ||
items: | ||
description: JsonPatchBlock is one json patch operation block. | ||
properties: | ||
from: | ||
description: From is a jsonpatch from string, used by move and | ||
copy operations. | ||
type: string | ||
op: | ||
description: Op is a jsonpatch operation string. | ||
enum: | ||
- add | ||
- remove | ||
- replace | ||
- move | ||
- copy | ||
type: string | ||
path: | ||
description: Path is a jsonpatch path string. | ||
type: string | ||
value: | ||
description: Value must be a string representing a valid json | ||
object used by replace and add operations. String has to be | ||
escaped with " to be valid a json object. | ||
type: string | ||
required: | ||
- op | ||
- path | ||
type: object | ||
type: array | ||
sidecarPatch: | ||
description: SidecarPatch specifies jsonpatch to apply to a sidecar | ||
container. | ||
items: | ||
description: JsonPatchBlock is one json patch operation block. | ||
properties: | ||
from: | ||
description: From is a jsonpatch from string, used by move and | ||
copy operations. | ||
type: string | ||
op: | ||
description: Op is a jsonpatch operation string. | ||
enum: | ||
- add | ||
- remove | ||
- replace | ||
- move | ||
- copy | ||
type: string | ||
path: | ||
description: Path is a jsonpatch path string. | ||
type: string | ||
value: | ||
description: Value must be a string representing a valid json | ||
object used by replace and add operations. String has to be | ||
escaped with " to be valid a json object. | ||
type: string | ||
required: | ||
- op | ||
- path | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true |
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: dataplaneinsights.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: DataplaneInsight | ||
listKind: DataplaneInsightList | ||
plural: dataplaneinsights | ||
singular: dataplaneinsight | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
status: | ||
description: Status is the status the Kuma resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: dataplanes.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: Dataplane | ||
listKind: DataplaneList | ||
plural: dataplanes | ||
singular: dataplane | ||
scope: Namespaced | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec is the specification of the Kuma Dataplane resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: externalservices.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: ExternalService | ||
listKind: ExternalServiceList | ||
plural: externalservices | ||
singular: externalservice | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec is the specification of the Kuma ExternalService resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: faultinjections.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: FaultInjection | ||
listKind: FaultInjectionList | ||
plural: faultinjections | ||
singular: faultinjection | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec is the specification of the Kuma FaultInjection resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
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,45 @@ | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.11.1 | ||
creationTimestamp: null | ||
name: healthchecks.kuma.io | ||
spec: | ||
group: kuma.io | ||
names: | ||
categories: | ||
- kuma | ||
kind: HealthCheck | ||
listKind: HealthCheckList | ||
plural: healthchecks | ||
singular: healthcheck | ||
scope: Cluster | ||
versions: | ||
- name: v1alpha1 | ||
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 | ||
mesh: | ||
description: Mesh is the name of the Kuma mesh this resource belongs to. | ||
It may be omitted for cluster-scoped resources. | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: Spec is the specification of the Kuma HealthCheck resource. | ||
x-kubernetes-preserve-unknown-fields: true | ||
type: object | ||
served: true | ||
storage: true |
Oops, something went wrong.