Skip to content

jenkins-x-apps/jx-app-gloo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

jx-app-gloo

The chart for the Gloo for Jenkins X.

Install

This chart can be installed using the jx CLI.

jx add app jx-app-gloo

After installation, you need to set up the knative domain.

Fist of all, you should get the knative external proxy with following command:

$ glooctl proxy url --name knative-external-proxy

Suppose return http://111.222.222.222, we need convert the result to IP.nip.io format, for example 111.222.222.222.nip.io

Next, edit the domain configuration config-map to configure 111.222.222.222.nip.io for all routes:

$ kubectl edit cm config-domain --namespace knative-serving
apiVersion: v1
data:
  111.222.222.222.nip.io: ""
kind: ConfigMap
[...]