# @kubernetes-models/istio

> Istio models

Latest version **3.0.1** (published 2026-05-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install @kubernetes-models/istio
pnpm add @kubernetes-models/istio
yarn add @kubernetes-models/istio
bun add @kubernetes-models/istio
```

## Health

**Score 60/100 (C)** — status: active.

Positive: esm support; no vulnerabilities; has provenance; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 3.0.1 |
| Published | 2026-05-06 |
| First published | 2021-08-07 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM |
| Node | >=22 |
| Dependencies | 3 |
| Unpacked size | 6.6 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 163 |
| Author | Tommy Chen <tommy351@gmail.com> |
| Maintainers | tommy351 |
| Keywords | kubernetes, kubernetes-models, istio |

## Links

- npm: https://www.npmjs.com/package/@kubernetes-models/istio
- Repository: https://github.com/tommy351/kubernetes-models-ts
- Homepage: https://github.com/tommy351/kubernetes-models-ts/tree/master/third-party/istio
- npm.io page: https://npm.io/package/@kubernetes-models/istio

## Dependencies (3)

- [@kubernetes-models/base](https://npm.io/package/@kubernetes-models/base.md) ^6.0.0
- [@kubernetes-models/validate](https://npm.io/package/@kubernetes-models/validate.md) ^5.0.1
- [@kubernetes-models/apimachinery](https://npm.io/package/@kubernetes-models/apimachinery.md) ^3.0.2

## Recent versions

- 3.0.1 (latest) — 2026-05-06
- 0.0.0-20240610074310 (snapshot) — 2024-06-10
- 3.0.0 — 2026-05-03
- 2.4.4 — 2025-08-16
- 2.4.3 — 2025-07-16
- 2.4.2 — 2024-12-08
- 2.4.1 — 2024-11-25
- 2.4.0 — 2024-06-10
- 0.0.0-20240608155033 — 2024-06-08
- 2.3.1 — 2024-06-08
- 0.0.0-20240608085410 — 2024-06-08
- 0.0.0-20240403022011 — 2024-04-03
- 0.0.0-20240402180946 — 2024-04-02
- 0.0.0-20240402174322 — 2024-04-02
- 0.0.0-20240401155416 — 2024-04-01
- … 20 more at https://npm.io/package/@kubernetes-models/istio/versions

## README

# @kubernetes-models/istio

[Istio](https://istio.io/) models.

## Installation

Install with npm.

```sh
npm install @kubernetes-models/istio
```

## Usage

```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();
```

## License

MIT

---
_Source: https://npm.io/package/@kubernetes-models/istio · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
