Skip to content
This repository has been archived by the owner on Oct 30, 2024. It is now read-only.

Fix application crd errors #364

Merged
merged 4 commits into from
Mar 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Fixed CRD OpenAPISchemas.
- App
- AppCatalog
- Chart

## [0.1.1] - 2020-03-12

### Fixed
Expand Down
1 change: 1 addition & 0 deletions docs/crd/application.giantswarm.io_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,5 @@ spec:
- namespace
- version
type: object
type: object
version: v1alpha1
1 change: 1 addition & 0 deletions docs/crd/application.giantswarm.io_appcatalog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,5 @@ spec:
- description
- storage
type: object
type: object
version: v1alpha1
1 change: 1 addition & 0 deletions pkg/apis/application/v1alpha1/app_catalog_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ spec:
openAPIV3Schema:
description: |
An AppCatalog defines a collection of apps to install in one or several clusters.
type: object
properties:
spec:
type: object
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/application/v1alpha1/app_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ spec:
description: |
Defines an App resource, which represents an application to be running in a Kubernetes cluster.
Reconciled by app-operator.
type: object
properties:
spec:
type: object
Expand Down
1 change: 1 addition & 0 deletions pkg/apis/application/v1alpha1/chart_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ spec:
status: {}
validation:
openAPIV3Schema:
type: object
properties:
spec:
type: object
Expand Down