@kubernetes-models/istio
Version:
45 lines (34 loc) • 583 B
Markdown
[](https://istio.io/) models.
Install with npm.
```sh
npm install @kubernetes-models/istio
```
```js
import { Gateway } from "@kubernetes-models/istio/networking.istio.io/v1beta1/Gateway";
// Create a new Gateway
const gateway = new Gateway({
metadata: {
name: "test"
},
spec: {
selector: {
app: "istio"
},
servers: [
{
port: {
number: 80
},
hosts: ["*"]
}
]
}
});
// Validate against JSON schema
gateway.validate();
```
MIT