Giter Club home page Giter Club logo

apigw-operator's Introduction

API Gateway Operator

A Kubernetes operator to launch ingresses for services.

Installation

A number of environment variables must be configured. If you're using the deployment.yaml file, you will find them towards the end of the file.

WATCH_NAMESPACE: apigw-operator-system
ENABLE_TLS: true
TLS_SECRET_NAME: ingresssecret
INGRESS_CLASS_NAME: nginx

Install operator and CRD:

kubectl apply -f deployment.yaml

An example CR is found at config/samples/operator_v1_apigw.yaml. Apply it with:

kubectl apply -f config/samples/operator_v1_apigw.yaml

Custom Resources

The custom resource's properties are:

  • host: Required. URL to host the access point on.
  • path: Required. Path within the host to host the access point on.
  • service: Required. Name of the Kubernetes service.
  • port: Required. Internal port the service is listening on.
  • auth: Optional. A structure to configure authentication. If left empty, authentication is disabled. Must be disabled if INGRESS_CLASS_NAME is not nginx, or resources will result in error. Has the following properties:
    • type: basic or none (disabled).
    • basic: Structure for basic authentication. Has the following properties:
      • user
      • password

A valid sample spec configuration is:

...
spec:
  host: foo.bar.com
  path: /
  service: myservice
  port: 9080

Another valid sample (requires nginx as INGRESS_CLASS_NAME):

...
spec:
  host: foo.bar.com
  path: /
  service: myservice
  port: 9080
  auth:
    type: basic
    basic:
      user: user
      password: password

Commands for development

This section is for convenience purposes and briefly recaps some commands used in operator development.

Generate yaml resource files (run this after editing *_types.go files):

make generate

Generate CRD manifests (run this after editing //+kubebuilder annotations):

make manifests

Run operator locally outside the cluster, for testing purposes (export required envs first):

make install run

Generate deployment.yaml file (remember to configure env and image in the Deployment resource):

./bin/kustomize build config/default > deployment.yaml

apigw-operator's People

Contributors

alb-car avatar etomaselli avatar ffais avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.