-
Notifications
You must be signed in to change notification settings - Fork 601
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sergiy Kulanov <[email protected]>
- Loading branch information
Showing
8 changed files
with
5,224 additions
and
0 deletions.
There are no files selected for viewing
74 changes: 74 additions & 0 deletions
74
operators/nexus-operator/3.0.0/manifests/edp.epam.com_nexuses.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,74 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.13.0 | ||
creationTimestamp: null | ||
name: nexuses.edp.epam.com | ||
spec: | ||
group: edp.epam.com | ||
names: | ||
kind: Nexus | ||
listKind: NexusList | ||
plural: nexuses | ||
singular: nexus | ||
scope: Namespaced | ||
versions: | ||
- additionalPrinterColumns: | ||
- description: Is connected to nexus | ||
jsonPath: .status.connected | ||
name: Connected | ||
type: boolean | ||
name: v1alpha1 | ||
schema: | ||
openAPIV3Schema: | ||
description: Nexus is the Schema for the nexus 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: NexusSpec defines the desired state of Nexus. | ||
properties: | ||
secret: | ||
description: Secret is the name of the k8s object Secret related to | ||
nexus. Secret should contain a user field with a nexus username | ||
and a password field with a nexus password. | ||
type: string | ||
url: | ||
description: Url is the url of nexus instance. | ||
type: string | ||
required: | ||
- secret | ||
- url | ||
type: object | ||
status: | ||
description: NexusStatus defines the observed state of Nexus. | ||
properties: | ||
connected: | ||
description: Connected shows if operator is connected to nexus. | ||
type: boolean | ||
error: | ||
description: Error represents error message if something went wrong. | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
subresources: | ||
status: {} | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: null | ||
storedVersions: null |
Oops, something went wrong.