Skip to content

Commit

Permalink
operator nexus-operator (3.0.0)
Browse files Browse the repository at this point in the history
Signed-off-by: Sergiy Kulanov <[email protected]>
  • Loading branch information
SergK committed Dec 11, 2023
1 parent 4f8e61d commit 6e04a81
Show file tree
Hide file tree
Showing 8 changed files with 5,224 additions and 0 deletions.
74 changes: 74 additions & 0 deletions operators/nexus-operator/3.0.0/manifests/edp.epam.com_nexuses.yaml
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
Loading

0 comments on commit 6e04a81

Please sign in to comment.