-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
package: rename schema api to author api (#248)
Schema API is unclear, Author API is more clear the API is intended for component authors.
- Loading branch information
1 parent
57dedc6
commit 6ad24a6
Showing
11 changed files
with
17 additions
and
16 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
import DocCardList from '@theme/DocCardList'; | ||
|
||
# Schema API | ||
# Author API | ||
|
||
<DocCardList /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...pi/schema/v1alpha3/definitions_go_gen.cue → ...pi/author/v1alpha3/definitions_go_gen.cue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
ehthumbs.db | ||
Thumbs.db | ||
vendor/ | ||
node_modules/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package holos | ||
|
||
import schema "github.com/holos-run/holos/api/schema/v1alpha3" | ||
import api "github.com/holos-run/holos/api/author/v1alpha3" | ||
|
||
#Platform: schema.#Platform | ||
#Fleets: schema.#StandardFleets | ||
#Platform: api.#Platform | ||
#Fleets: api.#StandardFleets | ||
|
||
_ComponentConfig: { | ||
Resources: #Resources | ||
ArgoConfig: #ArgoConfig | ||
} | ||
|
||
#Helm: schema.#Helm & _ComponentConfig | ||
#Kustomize: schema.#Kustomize & _ComponentConfig | ||
#Kubernetes: schema.#Kubernetes & _ComponentConfig | ||
#Helm: api.#Helm & _ComponentConfig | ||
#Kustomize: api.#Kustomize & _ComponentConfig | ||
#Kubernetes: api.#Kubernetes & _ComponentConfig | ||
|
||
#ArgoConfig: schema.#ArgoConfig & { | ||
#ArgoConfig: api.#ArgoConfig & { | ||
ClusterName: _ClusterName | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1 | ||
2 |