Skip to content

Commit

Permalink
add folder, subfolder fields
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Nov 27, 2021
1 parent 0a177ad commit 0c0fe38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Console's server side is written in elixir, and exposes a graphql api. The front
To begin developing the web app, install npm & yarn, then run:

```sh
cd assets && yarn start && cd -
cd assets && yarn install && cd -
make web
```

Expand Down
2 changes: 2 additions & 0 deletions lib/console/graphql/kubernetes/configuration_overlay.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ defmodule Console.GraphQl.Kubernetes.ConfigurationOverlay do

object :configuration_overlay_spec do
field :name, :string
field :folder, :string
field :subfolder, :string
field :documentation, :string
field :updates, list_of(:overlay_update)
field :input_type, :string
Expand Down
2 changes: 2 additions & 0 deletions lib/kube/configuration_overlay.ex
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ defmodule Kube.ConfigurationOverlay do

defmodel "ConfigurationOverlaySpec", "platform.plural.sh", "v1alpha1" do
property :name, "name", :string
property :folder, "folder", :string
property :subfolder, "subfolder", :string
property :documentation, "documentation", :string
property :updates, "updates", {:array, Kube.ConfigurationOverlay.OverlayUpdate}
property :input_type, "inputType", :string
Expand Down

0 comments on commit 0c0fe38

Please sign in to comment.