109 lines
3.1 KiB
YAML
109 lines
3.1 KiB
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: gitservers.code.dev
|
|
annotations:
|
|
controller-gen.kubebuilder.io/version: v0.16.0
|
|
spec:
|
|
group: code.dev
|
|
names:
|
|
kind: GitServer
|
|
listKind: GitServerList
|
|
plural: gitservers
|
|
singular: gitserver
|
|
shortNames:
|
|
- gs
|
|
scope: Namespaced
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
subresources:
|
|
status: {}
|
|
additionalPrinterColumns:
|
|
- name: Age
|
|
jsonPath: .metadata.creationTimestamp
|
|
type: date
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
required: [spec]
|
|
properties:
|
|
apiVersion:
|
|
type: string
|
|
kind:
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
type: object
|
|
required: []
|
|
properties:
|
|
image:
|
|
type: string
|
|
default: myapp/gitserver:latest
|
|
env:
|
|
type: array
|
|
items:
|
|
type: object
|
|
required: [name]
|
|
properties:
|
|
name:
|
|
type: string
|
|
value:
|
|
type: string
|
|
valueFrom:
|
|
type: object
|
|
properties:
|
|
secretRef:
|
|
type: object
|
|
required: [name, secretName, secretKey]
|
|
properties:
|
|
name:
|
|
type: string
|
|
secretName:
|
|
type: string
|
|
secretKey:
|
|
type: string
|
|
resources:
|
|
type: object
|
|
properties:
|
|
requests:
|
|
type: object
|
|
properties:
|
|
cpu:
|
|
type: string
|
|
memory:
|
|
type: string
|
|
limits:
|
|
type: object
|
|
properties:
|
|
cpu:
|
|
type: string
|
|
memory:
|
|
type: string
|
|
sshServiceType:
|
|
type: string
|
|
default: NodePort
|
|
storageSize:
|
|
type: string
|
|
default: 10Gi
|
|
imagePullPolicy:
|
|
type: string
|
|
default: IfNotPresent
|
|
sshDomain:
|
|
type: string
|
|
sshPort:
|
|
type: integer
|
|
default: 22
|
|
httpPort:
|
|
type: integer
|
|
default: 8022
|
|
status:
|
|
type: object
|
|
properties:
|
|
readyReplicas:
|
|
type: integer
|
|
phase:
|
|
type: string
|