Browse Source

Merge pull request #472 from tangming1996/bugfix/crd-update-helm

fix helm crd can not generete error
tags/v0.7.0
KubeEdge Bot GitHub 8 months ago
parent
commit
eaed7da6ec
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
13 changed files with 93917 additions and 191 deletions
  1. +1
    -0
      Makefile
  2. BIN
      build/helm/sedna.tgz
  3. +17
    -9
      build/helm/sedna/crds/sedna.io_datasets.yaml
  4. +5116
    -9
      build/helm/sedna/crds/sedna.io_featureextractionservices.yaml
  5. +10255
    -19
      build/helm/sedna/crds/sedna.io_federatedlearningjobs.yaml
  6. +15286
    -16
      build/helm/sedna/crds/sedna.io_incrementallearningjobs.yaml
  7. +11468
    -54
      build/helm/sedna/crds/sedna.io_jointinferenceservices.yaml
  8. +15274
    -16
      build/helm/sedna/crds/sedna.io_lifelonglearningjobs.yaml
  9. +19
    -9
      build/helm/sedna/crds/sedna.io_models.yaml
  10. +15400
    -22
      build/helm/sedna/crds/sedna.io_objectsearchservices.yaml
  11. +10321
    -19
      build/helm/sedna/crds/sedna.io_objecttrackingservices.yaml
  12. +5379
    -9
      build/helm/sedna/crds/sedna.io_reidjobs.yaml
  13. +5381
    -9
      build/helm/sedna/crds/sedna.io_videoanalyticsjobs.yaml

+ 1
- 0
Makefile View File

@@ -183,6 +183,7 @@ e2e:
.PHONY: crds controller-gen
crds: controller-gen
$(CONTROLLER_GEN) $(CRD_OPTIONS) paths="./pkg/apis/sedna/v1alpha1" output:crd:artifacts:config=build/crds
$(CONTROLLER_GEN) $(CRD_OPTIONS) paths="./pkg/apis/sedna/v1alpha1" output:crd:artifacts:config=build/helm/sedna/crds

# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
ifeq (,$(shell go env GOBIN))


BIN
build/helm/sedna.tgz View File


+ 17
- 9
build/helm/sedna/crds/sedna.io_datasets.yaml View File

@@ -1,11 +1,9 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.15.0
name: datasets.sedna.io
spec:
group: sedna.io
@@ -19,14 +17,27 @@ spec:
- name: v1alpha1
schema:
openAPIV3Schema:
description: Dataset describes the data that a dataset resource should have
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: DatasetSpec is a description of a dataset
properties:
credentialName:
type: string
@@ -42,6 +53,9 @@ spec:
- url
type: object
status:
description: |-
DatasetStatus represents information about the status of a dataset
including the time a dataset updated, and number of samples in a dataset
properties:
numberOfSamples:
type: integer
@@ -58,9 +72,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

+ 5116
- 9
build/helm/sedna/crds/sedna.io_featureextractionservices.yaml
File diff suppressed because it is too large
View File


+ 10255
- 19
build/helm/sedna/crds/sedna.io_federatedlearningjobs.yaml
File diff suppressed because it is too large
View File


+ 15286
- 16
build/helm/sedna/crds/sedna.io_incrementallearningjobs.yaml
File diff suppressed because it is too large
View File


+ 11468
- 54
build/helm/sedna/crds/sedna.io_jointinferenceservices.yaml
File diff suppressed because it is too large
View File


+ 15274
- 16
build/helm/sedna/crds/sedna.io_lifelonglearningjobs.yaml
File diff suppressed because it is too large
View File


+ 19
- 9
build/helm/sedna/crds/sedna.io_models.yaml View File

@@ -1,11 +1,9 @@

---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.6.2
creationTimestamp: null
controller-gen.kubebuilder.io/version: v0.15.0
name: models.sedna.io
spec:
group: sedna.io
@@ -19,14 +17,27 @@ spec:
- name: v1alpha1
schema:
openAPIV3Schema:
description: Model describes the data that a model resource should have
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: ModelSpec is a description of a model
properties:
credentialName:
type: string
@@ -43,9 +54,14 @@ spec:
- url
type: object
status:
description: |-
ModelStatus represents information about the status of a model
including the time a model updated, and metrics in a model
properties:
metrics:
items:
description: Metric describes the data that a resource model metric
should have
properties:
key:
type: string
@@ -67,9 +83,3 @@ spec:
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []

+ 15400
- 22
build/helm/sedna/crds/sedna.io_objectsearchservices.yaml
File diff suppressed because it is too large
View File


+ 10321
- 19
build/helm/sedna/crds/sedna.io_objecttrackingservices.yaml
File diff suppressed because it is too large
View File


+ 5379
- 9
build/helm/sedna/crds/sedna.io_reidjobs.yaml
File diff suppressed because it is too large
View File


+ 5381
- 9
build/helm/sedna/crds/sedna.io_videoanalyticsjobs.yaml
File diff suppressed because it is too large
View File


Loading…
Cancel
Save