We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfe3be6 + dcbf3ee commit 7812eedCopy full SHA for 7812eed
VERSION
@@ -1 +1 @@
1
-0.32.5
+0.32.6
pkg/codefresh/argo_runtime.go
@@ -39,22 +39,25 @@ func newArgoRuntimeAPI(codefresh *codefresh) IRuntimeAPI {
39
func (r *argoRuntime) List(ctx context.Context) ([]model.Runtime, error) {
40
jsonData := map[string]interface{}{
41
"query": `{
42
- runtimes {
43
- edges {
44
- node {
45
- metadata {
46
- name
47
- namespace
48
- }
49
- self {
50
- healthStatus
51
- version
52
53
- cluster
+ runtimes {
+ edges {
+ node {
+ metadata {
+ name
+ namespace
54
}
+ self {
+ syncStatus
+ healthMessage
+ healthStatus
+ }
+ cluster
55
+ ingressHost
56
+ runtimeVersion
57
58
- }`,
59
60
+ }`,
61
62
63
res := &graphqlRuntimesResponse{}
0 commit comments