It allows us to create leases for incoming connections to Kubernetes Ingress Objects.
It uses Kubernetes client go package (Go) to access and make changes in the k8s objects.
Any developer having an organization email and login to Ingress-concierge.
Homepage have the list of all the ingress from which we can take the lease and it looks like the image added below
For getting lease to a particular ingress, click on the name of the ingress from the above ingress list shown and you will be forwarded to the page shown below:
Now select the expiry time for the lease and click on "Access" button.
You will get a lease and you can't take the lease again if you already have the active lease.
You can also terminate the lease or it will automatically get terminated after its expiry time.
Obtain Google client secret and client id for OAuth.
Add http://127.0.0.1:4180
in Authorized JavaScript origins and http://127.0.0.1:4180/oauth2/callback
in Authorized redirect URIs.
Get the source code on your machine via git.
git clone --branch ingress-concierge https://github.com/razorpay/concierge.git
Rename file .env.example
to .env
and change credentials.
mv .env.example .env
Rename file oauth2_proxy.example.cfg
to oauth2_proxy.cfg
in oauth2_proxy
dir and add the following values obtained from Google OAuth
$ mv oauth2_proxy/oauth2_proxy.example.cfg oauth2_proxy/oauth2_proxy.cfg
$ vi oauth2_proxy/oauth2_proxy.cfg
client_id =
client_secret =
Make sure to change the seeding.go
file in database
dir with your information else you won't be able to login.
Run docker-compose command to run the application.
docker-compose up -d
Check for the running application.
docker ps
Access the application on http://127.0.0.1:4180