This repository was archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Make operator install KIC CRDs from manifests #12
Merged
Merged
Changes from all commits
Commits
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: globalconfigurations.k8s.nginx.org | ||
spec: | ||
group: k8s.nginx.org | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
scope: Namespaced | ||
names: | ||
plural: globalconfigurations | ||
singular: globalconfiguration | ||
kind: GlobalConfiguration | ||
shortNames: | ||
- gc | ||
preserveUnknownFields: false | ||
validation: | ||
openAPIV3Schema: | ||
description: GlobalConfiguration defines the GlobalConfiguration resource. | ||
type: object | ||
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: GlobalConfigurationSpec is the spec of the GlobalConfiguration | ||
resource. | ||
type: object | ||
properties: | ||
listeners: | ||
type: array | ||
items: | ||
description: Listener defines a listener. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
port: | ||
type: integer | ||
protocol: | ||
type: string |
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,56 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: policies.k8s.nginx.org | ||
spec: | ||
group: k8s.nginx.org | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
scope: Namespaced | ||
names: | ||
plural: policies | ||
singular: policy | ||
kind: Policy | ||
shortNames: | ||
- pol | ||
preserveUnknownFields: false | ||
validation: | ||
openAPIV3Schema: | ||
description: Policy defines a Policy for VirtualServer and VirtualServerRoute | ||
resources. | ||
type: object | ||
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: 'PolicySpec is the spec of the Policy resource. The spec includes | ||
multiple fields, where each field represents a different policy. Note: | ||
currently we have only one policy -- AccessControl, but we will support | ||
more in the future. Only one policy (field) is allowed.' | ||
type: object | ||
properties: | ||
accessControl: | ||
description: AccessControl defines an access policy based on the source | ||
IP of a request. | ||
type: object | ||
properties: | ||
allow: | ||
type: array | ||
items: | ||
type: string | ||
deny: | ||
type: array | ||
items: | ||
type: string |
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,75 @@ | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: transportservers.k8s.nginx.org | ||
spec: | ||
group: k8s.nginx.org | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
scope: Namespaced | ||
names: | ||
plural: transportservers | ||
singular: transportserver | ||
kind: TransportServer | ||
shortNames: | ||
- ts | ||
preserveUnknownFields: false | ||
validation: | ||
openAPIV3Schema: | ||
description: TransportServer defines the TransportServer resource. | ||
type: object | ||
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: TransportServerSpec is the spec of the TransportServer resource. | ||
type: object | ||
properties: | ||
action: | ||
description: Action defines an action. | ||
type: object | ||
properties: | ||
pass: | ||
type: string | ||
host: | ||
type: string | ||
listener: | ||
description: TransportServerListener defines a listener for a TransportServer. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
protocol: | ||
type: string | ||
upstreamParameters: | ||
description: UpstreamParameters defines parameters for an upstream. | ||
type: object | ||
properties: | ||
udpRequests: | ||
type: integer | ||
udpResponses: | ||
type: integer | ||
upstreams: | ||
type: array | ||
items: | ||
description: Upstream defines an upstream. | ||
type: object | ||
properties: | ||
name: | ||
type: string | ||
port: | ||
type: integer | ||
service: | ||
type: string |
Oops, something went wrong.
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.