-
Notifications
You must be signed in to change notification settings - Fork 260
CRD: Move scaling items into scaler, change scope to namespaced #587
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
106 changes: 106 additions & 0 deletions
106
nodenetworkconfig/manifests/acn.azure.com_nodenetworkconfigs.yaml
This file contains hidden or 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,106 @@ | ||
|
|
||
| --- | ||
| apiVersion: apiextensions.k8s.io/v1beta1 | ||
| kind: CustomResourceDefinition | ||
| metadata: | ||
| annotations: | ||
| controller-gen.kubebuilder.io/version: v0.3.0 | ||
| creationTimestamp: null | ||
| name: nodenetworkconfigs.acn.azure.com | ||
| spec: | ||
| group: acn.azure.com | ||
| names: | ||
| kind: NodeNetworkConfig | ||
| listKind: NodeNetworkConfigList | ||
| plural: nodenetworkconfigs | ||
| shortNames: | ||
| - nnc | ||
| singular: nodenetworkconfig | ||
| scope: Namespaced | ||
| subresources: | ||
| status: {} | ||
| validation: | ||
| openAPIV3Schema: | ||
| description: NodeNetworkConfig is the Schema for the nodenetworkconfigs API | ||
| 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: | ||
| description: NodeNetworkConfigSpec defines the desired state of NetworkConfig | ||
| properties: | ||
| iPsNotInUse: | ||
| items: | ||
| type: string | ||
| type: array | ||
| requestedIPCount: | ||
| format: int64 | ||
| type: integer | ||
| type: object | ||
| status: | ||
| description: NodeNetworkConfigStatus defines the observed state of NetworkConfig | ||
| properties: | ||
| networkContainers: | ||
| items: | ||
| description: NetworkContainer defines the structure of a Network Container | ||
| as found in NetworkConfigStatus | ||
| properties: | ||
| defaultGateway: | ||
| type: string | ||
| iPAssignments: | ||
| items: | ||
| description: IPAssignment groups an IP address and Name. Name | ||
| is a UUID set by the the IP address assigner. | ||
| properties: | ||
| iP: | ||
| type: string | ||
| name: | ||
| type: string | ||
| type: object | ||
| type: array | ||
| id: | ||
| type: string | ||
| netmask: | ||
| description: Netmask for the subnet represented by this NC's SubnetID | ||
| type: string | ||
| primaryIP: | ||
| type: string | ||
| subnetID: | ||
| type: string | ||
| type: object | ||
| type: array | ||
| scaler: | ||
| description: Scaler groups IP request params together | ||
| properties: | ||
| batchSize: | ||
| format: int64 | ||
| type: integer | ||
| releaseThresholdPercent: | ||
| format: int64 | ||
| type: integer | ||
| requestThresholdPercent: | ||
| format: int64 | ||
| type: integer | ||
| type: object | ||
| type: object | ||
| type: object | ||
| version: v1alpha | ||
| versions: | ||
| - name: v1alpha | ||
| served: true | ||
| storage: true | ||
| status: | ||
| acceptedNames: | ||
| kind: "" | ||
| plural: "" | ||
| conditions: [] | ||
| storedVersions: [] | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.