forked from openyurtio/openyurt
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/openyurtio/openyurt into …
…fix_calico * 'master' of https://github.com/openyurtio/openyurt: Add status info to YurtAppSet/YurtAppDaemon (openyurtio#1702) fix: add the logic of removing the finalizer (openyurtio#1695) Fix work dir nested `yurthub/yurthub` (openyurtio#1693) Add yurtappoverrider (openyurtio#1684) modify the logic for judging static pods and combine the utils for pod and node (openyurtio#1689) chore: slice loop replace (openyurtio#1690) unified expression about DaemonSet (openyurtio#1698) improve controller names (openyurtio#1687) add gateway public service controller (openyurtio#1685) feat: add token format checking to yurtadm join process (openyurtio#1681) add gateway internal service controller (openyurtio#1677) fix: yurt-iot-dock cannot be dynamically deployed in platformadmin (openyurtio#1679) unserve v1alpha1 version of platformadmin crd (openyurtio#1659)
- Loading branch information
Showing
88 changed files
with
5,056 additions
and
489 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
144 changes: 144 additions & 0 deletions
144
charts/yurt-manager/crds/apps.openyurt.io_yurtappoverriders.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,144 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.7.0 | ||
creationTimestamp: null | ||
name: yurtappoverriders.apps.openyurt.io | ||
spec: | ||
group: apps.openyurt.io | ||
names: | ||
kind: YurtAppOverrider | ||
listKind: YurtAppOverriderList | ||
plural: yurtappoverriders | ||
shortNames: | ||
- yao | ||
singular: yurtappoverrider | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: The subject kind of this overrider. | ||
jsonPath: .subject.kind | ||
name: Subject | ||
type: string | ||
- description: The subject name of this overrider. | ||
jsonPath: .subject.name | ||
name: Name | ||
type: string | ||
- description: CreationTimestamp is a timestamp representing the server time when | ||
this object was created. It is not guaranteed to be set in happens-before | ||
order across separate operations. Clients may not set this value. It is represented | ||
in RFC3339 form and is in UTC. | ||
jsonPath: .metadata.creationTimestamp | ||
name: AGE | ||
type: date | ||
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 | ||
entries: | ||
items: | ||
description: Describe detailed multi-region configuration of the subject | ||
Entry describe a set of nodepools and their shared or identical configurations | ||
properties: | ||
items: | ||
items: | ||
description: Item represents configuration to be injected. Only | ||
one of its members may be specified. | ||
properties: | ||
image: | ||
description: ImageItem specifies the corresponding container | ||
and the claimed image | ||
properties: | ||
containerName: | ||
description: ContainerName represents name of the container | ||
in which the Image will be replaced | ||
type: string | ||
imageClaim: | ||
description: ImageClaim represents the claimed image name | ||
which is injected into the container above | ||
type: string | ||
required: | ||
- containerName | ||
- imageClaim | ||
type: object | ||
replicas: | ||
format: int32 | ||
type: integer | ||
type: object | ||
type: array | ||
patches: | ||
description: Convert Patch struct into json patch operation | ||
items: | ||
properties: | ||
operation: | ||
description: Operation represents the operation | ||
enum: | ||
- add | ||
- remove | ||
- replace | ||
type: string | ||
path: | ||
description: Path represents the path in the json patch | ||
type: string | ||
value: | ||
description: Indicates the value of json patch | ||
x-kubernetes-preserve-unknown-fields: true | ||
required: | ||
- operation | ||
- path | ||
type: object | ||
type: array | ||
pools: | ||
items: | ||
type: string | ||
type: array | ||
required: | ||
- pools | ||
type: object | ||
type: array | ||
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 | ||
subject: | ||
description: Describe the object Entries belongs | ||
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 | ||
name: | ||
description: Name is the name of YurtAppSet or YurtAppDaemon | ||
type: string | ||
required: | ||
- name | ||
type: object | ||
required: | ||
- entries | ||
- subject | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
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
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
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
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
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
Oops, something went wrong.