Skip to content

jenkins-x-apps/jx-app-flagger

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jx-app-flagger

The chart for the Flagger for Jenkins X.

Install

This chart can be installed using the jx CLI.

jx add app jx-app-flagger

Enable Istio in production namespace:

$ kubectl label namespace jx-production istio-injection=enabled

Create the Istio gateway:

$ kubectl apply -f - <<EOF
apiVersion: networking.istio.io/v1alpha3
kind: Gateway
metadata:
  name: jx-gateway
  namespace: istio-system
spec:
  selector:
    istio: ingressgateway # use Istio default gateway implementation
  servers:
  - port:
      number: 80
      name: http
      protocol: HTTP
    hosts:
    - "*"
EOF