πŸ“ƒXApplication

XApplication

Pronunciation: Extensible Application.

CRD for Extensible Agumbe Application contains all declarations required for creating and managing an application on Kubernetes clusters.

  • name

  • id

  • description (optional)

  • docker-image

  • application-repo

  • manifests-index, kustomize-path

  • ingress-path

  • argo-path

  • cluster-id

apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
  name: xapplications.agumbe.io
spec:
  group: agumbe.io
  versions:
    - name: v1
      served: true
      storage: true
      schema:
        openAPIV3Schema:
          type: object
          properties:
            spec:
              type: object
              properties:
                name:
                  type: string
                id:
                  type: string
                description:
                  type: string
                  nullable: true
                dockerImage:
                  type: string
                applicationRepo:
                  type: string
                manifestsIndex:
                  type: string
                kustomizePath:
                  type: string
                ingressPath:
                  type: string
                argoPath:
                  type: string
                clusterId:
                  type: string
  scope: Namespaced
  names:
    plural: xapplications
    singular: xapplication
    kind: XApplication
    shortNames:
    - xapp

Last updated