1.0.0 • Published 4 years ago

@elcodev/pulumi-istio v1.0.0

Weekly downloads
1
License
-
Repository
-
Last release
4 years ago

Pulumi Istio

Pulumi Kubernetes resources for Istio generated from the Istio API

Installation

$ npm i @elcodev/pulumi-istio

Example

Gateway

import * as istio from '@elcodev/pulumi-istio';

// ...

export const helloWorldGateway = new istio.networking.v1beta1.Gateway('hello-world-gateway', {
  metadata: {
    name: 'hello-world-gateway',
  },
  spec: {
    selector: {
      istio: 'ingressgateway',
    },
    servers: [
      {
        port: {
          number: 80,
          name: 'http',
          protocol: 'HTTP',
        },
        hosts: ['*'],
      },
    ],
  },
});