forked from janus-idp/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(kiali): istio config list and details (janus-idp#1326)
* istio config * fixing link issues * updated entity view * fix hook issue
- Loading branch information
1 parent
d59ad04
commit f8fc349
Showing
38 changed files
with
2,497 additions
and
234 deletions.
There are no files selected for viewing
326 changes: 242 additions & 84 deletions
326
plugins/kiali/dev/__fixtures__/general/istioConfig.json
Large diffs are not rendered by default.
Oops, something went wrong.
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
103 changes: 103 additions & 0 deletions
103
...s/kiali/dev/__fixtures__/namespaces/bookinfo/istio_configs/gateways/bookinfo-gateway.json
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 |
---|---|---|
@@ -0,0 +1,103 @@ | ||
{ | ||
"namespace": { | ||
"name": "bookinfo", | ||
"cluster": "", | ||
"isAmbient": false, | ||
"labels": null, | ||
"annotations": null | ||
}, | ||
"objectType": "gateways", | ||
"authorizationPolicy": null, | ||
"destinationRule": null, | ||
"envoyFilter": null, | ||
"gateway": { | ||
"kind": "Gateway", | ||
"apiVersion": "networking.istio.io/v1beta1", | ||
"metadata": { | ||
"name": "bookinfo-gateway", | ||
"namespace": "bookinfo", | ||
"uid": "6369d379-ce97-4a77-98ef-5702845ddc56", | ||
"resourceVersion": "811259", | ||
"generation": 3, | ||
"creationTimestamp": "2024-03-05T14:38:05Z", | ||
"annotations": { | ||
"kubectl.kubernetes.io/last-applied-configuration": "{\"apiVersion\":\"networking.istio.io/v1alpha3\",\"kind\":\"Gateway\",\"metadata\":{\"annotations\":{},\"name\":\"bookinfo-gateway\",\"namespace\":\"bookinfo\"},\"spec\":{\"selector\":{\"istio\":\"ingressgateway\"},\"servers\":[{\"hosts\":[\"*\"],\"port\":{\"name\":\"http\",\"number\":8080,\"protocol\":\"HTTP\"}}]}}\n" | ||
}, | ||
"managedFields": [ | ||
{ | ||
"manager": "kubectl-client-side-apply", | ||
"operation": "Update", | ||
"apiVersion": "networking.istio.io/v1alpha3", | ||
"time": "2024-03-05T14:38:05Z", | ||
"fieldsType": "FieldsV1", | ||
"fieldsV1": { | ||
"f:metadata": { | ||
"f:annotations": { | ||
".": {}, | ||
"f:kubectl.kubernetes.io/last-applied-configuration": {} | ||
} | ||
}, | ||
"f:spec": { | ||
".": {}, | ||
"f:selector": {}, | ||
"f:servers": {} | ||
} | ||
} | ||
}, | ||
{ | ||
"manager": "kiali", | ||
"operation": "Update", | ||
"apiVersion": "networking.istio.io/v1beta1", | ||
"time": "2024-03-20T12:42:26Z", | ||
"fieldsType": "FieldsV1", | ||
"fieldsV1": { | ||
"f:spec": { | ||
"f:selector": { | ||
"f:istio": {} | ||
} | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"spec": { | ||
"servers": [ | ||
{ | ||
"port": { | ||
"number": 8080, | ||
"protocol": "HTTP", | ||
"name": "http" | ||
}, | ||
"hosts": ["*"] | ||
} | ||
], | ||
"selector": { | ||
"istio": "ingressgateway" | ||
} | ||
}, | ||
"status": {} | ||
}, | ||
"peerAuthentication": null, | ||
"requestAuthentication": null, | ||
"serviceEntry": null, | ||
"sidecar": null, | ||
"virtualService": null, | ||
"workloadEntry": null, | ||
"workloadGroup": null, | ||
"wasmPlugin": null, | ||
"telemetry": null, | ||
"k8sGateway": null, | ||
"k8sGRPCRoute": null, | ||
"k8sHTTPRoute": null, | ||
"k8sReferenceGrant": null, | ||
"k8sTCPRoute": null, | ||
"k8sTLSRoute": null, | ||
"permissions": { | ||
"create": true, | ||
"update": true, | ||
"delete": true | ||
}, | ||
"validation": null, | ||
"references": null, | ||
"help": null | ||
} |
Oops, something went wrong.