1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/manifests/arango-crd.yaml

319 lines
8.6 KiB
YAML
Raw Normal View History

---
# Source: kube-arangodb-crd/templates/backup-policy.yaml
2020-12-16 21:59:24 +00:00
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
2020-12-16 21:59:24 +00:00
name: arangobackuppolicies.backup.arangodb.com
labels:
app.kubernetes.io/name: kube-arangodb-crd
2021-07-06 05:58:35 +00:00
helm.sh/chart: kube-arangodb-crd-1.1.10
2020-12-16 21:59:24 +00:00
app.kubernetes.io/managed-by: Tiller
app.kubernetes.io/instance: crd
release: crd
spec:
2020-12-16 21:59:24 +00:00
group: backup.arangodb.com
names:
kind: ArangoBackupPolicy
listKind: ArangoBackupPolicyList
plural: arangobackuppolicies
shortNames:
- arangobackuppolicy
- arangobp
singular: arangobackuppolicy
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
additionalPrinterColumns:
- jsonPath: .spec.schedule
description: Schedule
name: Schedule
type: string
- jsonPath: .status.scheduled
description: Scheduled
name: Scheduled
type: string
- jsonPath: .status.message
priority: 1
description: Message of the ArangoBackupPolicy object
name: Message
type: string
subresources:
status: {}
- name: v1alpha
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
additionalPrinterColumns:
- jsonPath: .spec.schedule
2019-10-07 05:48:36 +00:00
description: Schedule
name: Schedule
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.scheduled
2019-10-07 05:48:36 +00:00
description: Scheduled
name: Scheduled
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.message
priority: 1
2019-10-07 05:48:36 +00:00
description: Message of the ArangoBackupPolicy object
name: Message
type: string
2020-12-16 21:59:24 +00:00
subresources:
status: {}
2019-10-07 05:48:36 +00:00
---
# Source: kube-arangodb-crd/templates/backup.yaml
2020-12-16 21:59:24 +00:00
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
2019-10-07 05:48:36 +00:00
name: arangobackups.backup.arangodb.com
labels:
app.kubernetes.io/name: kube-arangodb-crd
2021-07-06 05:58:35 +00:00
helm.sh/chart: kube-arangodb-crd-1.1.10
app.kubernetes.io/managed-by: Tiller
app.kubernetes.io/instance: crd
release: crd
spec:
2020-12-16 21:59:24 +00:00
group: backup.arangodb.com
names:
kind: ArangoBackup
listKind: ArangoBackupList
plural: arangobackups
shortNames:
- arangobackup
singular: arangobackup
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
additionalPrinterColumns:
- jsonPath: .spec.policyName
2019-10-07 05:48:36 +00:00
description: Policy name
name: Policy
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .spec.deployment.name
2019-10-07 05:48:36 +00:00
description: Deployment name
name: Deployment
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.backup.version
2019-10-07 05:48:36 +00:00
description: Backup Version
name: Version
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.backup.createdAt
2019-10-07 05:48:36 +00:00
description: Backup Creation Timestamp
name: Created
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.backup.sizeInBytes
2019-10-07 05:48:36 +00:00
description: Backup Size in Bytes
name: Size
type: integer
format: byte
2020-12-16 21:59:24 +00:00
- jsonPath: .status.backup.numberOfDBServers
2019-10-07 05:48:36 +00:00
description: Backup Number of the DB Servers
name: DBServers
type: integer
2020-12-16 21:59:24 +00:00
- jsonPath: .status.state
2019-10-07 05:48:36 +00:00
description: The actual state of the ArangoBackup
name: State
type: string
2020-12-16 21:59:24 +00:00
- jsonPath: .status.message
priority: 1
2019-10-07 05:48:36 +00:00
description: Message of the ArangoBackup object
name: Message
type: string
2020-12-16 21:59:24 +00:00
subresources:
status: {}
2020-12-16 21:59:24 +00:00
- name: v1alpha
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
additionalPrinterColumns:
- jsonPath: .spec.policyName
description: Policy name
name: Policy
type: string
- jsonPath: .spec.deployment.name
description: Deployment name
name: Deployment
type: string
- jsonPath: .status.backup.version
description: Backup Version
name: Version
type: string
- jsonPath: .status.backup.createdAt
description: Backup Creation Timestamp
name: Created
type: string
- jsonPath: .status.backup.sizeInBytes
description: Backup Size in Bytes
name: Size
type: integer
format: byte
- jsonPath: .status.backup.numberOfDBServers
description: Backup Number of the DB Servers
name: DBServers
type: integer
- jsonPath: .status.state
description: The actual state of the ArangoBackup
name: State
type: string
- jsonPath: .status.message
priority: 1
description: Message of the ArangoBackup object
name: Message
type: string
subresources:
status: {}
---
# Source: kube-arangodb-crd/templates/deployment-replications.yaml
2020-12-16 21:59:24 +00:00
apiVersion: apiextensions.k8s.io/v1
2018-11-02 20:11:34 +00:00
kind: CustomResourceDefinition
metadata:
name: arangodeploymentreplications.replication.database.arangodb.com
labels:
app.kubernetes.io/name: kube-arangodb-crd
2021-07-06 05:58:35 +00:00
helm.sh/chart: kube-arangodb-crd-1.1.10
app.kubernetes.io/managed-by: Tiller
app.kubernetes.io/instance: crd
release: crd
2018-11-02 20:11:34 +00:00
spec:
2020-12-16 21:59:24 +00:00
group: replication.database.arangodb.com
names:
kind: ArangoDeploymentReplication
listKind: ArangoDeploymentReplicationList
plural: arangodeploymentreplications
shortNames:
- arangorepl
singular: arangodeploymentreplication
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
- name: v1alpha
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
- name: v2alpha1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
subresources:
status: {}
2018-11-02 20:11:34 +00:00
---
# Source: kube-arangodb-crd/templates/deployment.yaml
2020-12-16 21:59:24 +00:00
apiVersion: apiextensions.k8s.io/v1
2018-11-02 20:11:34 +00:00
kind: CustomResourceDefinition
metadata:
name: arangodeployments.database.arangodb.com
labels:
app.kubernetes.io/name: kube-arangodb-crd
2021-07-06 05:58:35 +00:00
helm.sh/chart: kube-arangodb-crd-1.1.10
app.kubernetes.io/managed-by: Tiller
app.kubernetes.io/instance: crd
release: crd
2018-11-02 20:11:34 +00:00
spec:
2020-12-16 21:59:24 +00:00
group: database.arangodb.com
names:
kind: ArangoDeployment
listKind: ArangoDeploymentList
plural: arangodeployments
shortNames:
- arangodb
- arango
singular: arangodeployment
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
- name: v1alpha
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
- name: v2alpha1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
subresources:
status: {}
2021-03-02 12:41:51 +00:00
---
# Source: kube-arangodb-crd/templates/member.yaml
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
2021-04-14 14:01:29 +00:00
name: arangomembers.database.arangodb.com
2021-03-02 12:41:51 +00:00
labels:
app.kubernetes.io/name: kube-arangodb-crd
2021-07-06 05:58:35 +00:00
helm.sh/chart: kube-arangodb-crd-1.1.10
2021-03-02 12:41:51 +00:00
app.kubernetes.io/managed-by: Tiller
app.kubernetes.io/instance: crd
release: crd
spec:
group: database.arangodb.com
names:
kind: ArangoMember
listKind: ArangoMemberList
plural: arangomembers
shortNames:
- arangomembers
singular: arangomember
scope: Namespaced
versions:
- name: v1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: true
subresources:
status: {}
- name: v2alpha1
schema:
openAPIV3Schema:
type: object
x-kubernetes-preserve-unknown-fields: true
served: true
storage: false
subresources:
status: {}