Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: pluralsh/console-client-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.48
Choose a base ref
...
head repository: pluralsh/console-client-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.49
Choose a head ref
  • 1 commit
  • 4 files changed
  • 1 contributor

Commits on Dec 2, 2023

  1. Copy the full SHA
    3b4b4c9 View commit details
Showing with 93 additions and 5 deletions.
  1. +81 −1 client.go
  2. +6 −0 graph/deployment.graphql
  3. +2 −2 models_gen.go
  4. +4 −2 schema/schema.graphql
82 changes: 81 additions & 1 deletion client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions graph/deployment.graphql
Original file line number Diff line number Diff line change
@@ -52,6 +52,12 @@ mutation updateServiceComponents($id: ID!, $components: [ComponentAttributes], $
}
}

mutation AddServiceError($id: ID!, $errors: [ServiceErrorAttributes]) {
updateServiceComponents(id: $id, errors: $errors) {
...ServiceDeploymentFragment
}
}

mutation UpdateDeploymentSettings($attributes: DeploymentSettingsAttributes!) {
updateDeploymentSettings(attributes: $attributes) {
...DeploymentSettingsFragment
4 changes: 2 additions & 2 deletions models_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions schema/schema.graphql
Original file line number Diff line number Diff line change
@@ -1268,7 +1268,7 @@ input NodePoolAttributes {
minSize: Int!
maxSize: Int!
instanceType: String!
labels: Map
labels: Json
taints: [TaintAttributes]
cloudSettings: NodePoolCloudAttributes
}
@@ -1523,7 +1523,7 @@ type NodePool {
spot: Boolean

"kubernetes labels to apply to the nodes in this pool, useful for node selectors"
labels: Map
labels: Json

"any taints you'd want to apply to a node, for eg preventing scheduling on spot instances"
taints: [Taint]
@@ -3247,6 +3247,8 @@ enum Delta {

scalar Map

scalar Json

scalar Long

"""