mirror of
https://github.com/wahyd4/charts.git
synced 2026-08-17 17:16:30 +10:00
[bitnami/kubeapps] upgraded app repository CRD to v1 version (#7103)
This commit is contained in:
@@ -25,4 +25,4 @@ maintainers:
|
||||
name: kubeapps
|
||||
sources:
|
||||
- https://github.com/kubeapps/kubeapps
|
||||
version: 7.1.8
|
||||
version: 7.2.0
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
apiVersion: apiextensions.k8s.io/v1beta1
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
name: apprepositories.kubeapps.com
|
||||
@@ -10,4 +10,105 @@ spec:
|
||||
plural: apprepositories
|
||||
shortNames:
|
||||
- apprepos
|
||||
version: v1alpha1
|
||||
versions:
|
||||
- name: v1alpha1
|
||||
storage: true
|
||||
served: true
|
||||
schema:
|
||||
openAPIV3Schema:
|
||||
type: object
|
||||
required:
|
||||
- spec
|
||||
properties:
|
||||
spec:
|
||||
type: object
|
||||
required:
|
||||
- type
|
||||
- url
|
||||
properties:
|
||||
type:
|
||||
type: string
|
||||
enum: [ "helm", "oci" ]
|
||||
url:
|
||||
type: string
|
||||
description:
|
||||
type: string
|
||||
auth:
|
||||
type: object
|
||||
properties:
|
||||
header:
|
||||
type: object
|
||||
required:
|
||||
- secretKeyRef
|
||||
properties:
|
||||
secretKeyRef:
|
||||
type: object
|
||||
required:
|
||||
- key
|
||||
- name
|
||||
properties:
|
||||
key:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
customCA:
|
||||
type: object
|
||||
required:
|
||||
- secretKeyRef
|
||||
properties:
|
||||
secretKeyRef:
|
||||
type: object
|
||||
required:
|
||||
- key
|
||||
- name
|
||||
properties:
|
||||
key:
|
||||
type: string
|
||||
name:
|
||||
type: string
|
||||
dockerRegistrySecrets:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
tlsInsecureSkipVerify:
|
||||
type: boolean
|
||||
passCredentials:
|
||||
type: boolean
|
||||
filterRule:
|
||||
type: object
|
||||
properties:
|
||||
jq:
|
||||
type: string
|
||||
variables:
|
||||
type: object
|
||||
additionalProperties:
|
||||
type: string
|
||||
ociRepositories:
|
||||
type: array
|
||||
items:
|
||||
type: string
|
||||
resyncRequests:
|
||||
type: integer
|
||||
syncJobPodTemplate:
|
||||
type: object
|
||||
properties:
|
||||
metadata:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
spec:
|
||||
type: object
|
||||
x-kubernetes-preserve-unknown-fields: true
|
||||
status:
|
||||
type: object
|
||||
properties:
|
||||
status:
|
||||
type: string
|
||||
additionalPrinterColumns:
|
||||
- name: Type
|
||||
type: string
|
||||
description: The type of this repository.
|
||||
jsonPath: .spec.type
|
||||
- name: URL
|
||||
type: string
|
||||
description: The URL of this repository.
|
||||
jsonPath: .spec.url
|
||||
|
||||
Reference in New Issue
Block a user