Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates documentation #44

Merged
merged 2 commits into from
May 3, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 96 additions & 63 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ We are working on distilling the logic used in the example application pipelines

# Table of contents

<!-- Update with `doctoc --notitle README.md --maxlevel 4`. See https://github.com/thlorenz/doctoc -->
<!-- Update with `doctoc --notitle README.md --maxlevel 5`. See https://github.com/thlorenz/doctoc -->
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->

Expand All @@ -24,10 +24,16 @@ We are working on distilling the logic used in the example application pipelines
- [SCM-Manager](#scm-manager)
- [ArgoCD UI](#argocd-ui)
- [Demo applications](#demo-applications)
- [PetClinic via Flux V1](#petclinic-via-flux-v1)
- [3rd Party app (NGINX) via Flux V1](#3rd-party-app-nginx-via-flux-v1)
- [PetClinic via Flux V2](#petclinic-via-flux-v2)
- [PetClinic via ArgoCD](#petclinic-via-argocd)
- [Flux V1](#flux-v1)
- [PetClinic with plain k8s resources](#petclinic-with-plain-k8s-resources)
- [PetClinic with helm](#petclinic-with-helm)
- [3rd Party app (NGINX) with helm](#3rd-party-app-nginx-with-helm)
- [Flux V2](#flux-v2)
- [PetClinic with plain k8s resources](#petclinic-with-plain-k8s-resources-1)
- [ArgoCD](#argocd)
- [PetClinic with plain k8s resources](#petclinic-with-plain-k8s-resources-2)
- [PetClinic with helm](#petclinic-with-helm-1)
- [3rd Party app (NGINX) with helm](#3rd-party-app-nginx-with-helm-1)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

Expand Down Expand Up @@ -254,61 +260,88 @@ Please note that it might take about 1 Minute after the PullRequest has been acc
deploying.
Alternatively you can trigger the deployment via the respective GitOps operator's CLI (flux) or UI (argo CD)

#### PetClinic via Flux V1

* [Jenkinsfile](applications/petclinic/fluxv1/plain-k8s/Jenkinsfile) for plain `k8s` deployment
* Staging:
* local: [localhost:30001](http://localhost:30001)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-staging`
* Production:
* local: [localhost:30002](http://localhost:30002)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-production`
* QA (example for a 3rd stage)
* local: [localhost:30003](http://localhost:30003)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-qa`

* [Jenkinsfile](applications/petclinic/fluxv1/helm/Jenkinsfile) for `helm` deployment
* Staging
* local: [localhost:30004](http://localhost:30004)
* remote: `scripts/get-remote-url spring-petclinic-helm-springboot fluxv1-staging`
* Production
* local: [localhost:30005](http://localhost:30005)
* remote: `scripts/get-remote-url spring-petclinic-helm-springboot fluxv1-production`

#### 3rd Party app (NGINX) via Flux V1

* [Jenkinsfile](applications/nginx/fluxv1/Jenkinsfile)
* Staging
* local: [localhost:30006](http://localhost:30006)
* remote: `scripts/get-remote-url nginx fluxv1-staging`
* Production
* local: [localhost:30007](http://localhost:30007)
* remote: `scripts/get-remote-url nginx fluxv1-production`

#### PetClinic via Flux V2

* [Jenkinsfile](applications/petclinic/fluxv2/plain-k8s/Jenkinsfile)
* Staging
* local: [localhost:30010](http://localhost:30010)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv2-staging`
* Production
* local: [localhost:30011](http://localhost:30011)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv2-production`

#### PetClinic via ArgoCD

* [Jenkinsfile](applications/petclinic/argocd/plain-k8s/Jenkinsfile) for `plain` deployment
* Staging
* local [localhost:30020](http://localhost:30020)
* remote: `scripts/get-remote-url spring-petclinic-plain argocd-staging`
* Production
* local [localhost:30021](http://localhost:30021)
* remote: `scripts/get-remote-url spring-petclinic-plain argocd-production`

* [Jenkinsfile](applications/petclinic/argocd/helm/Jenkinsfile) for `helm` deployment
* Staging
* local [localhost:30022](http://localhost:30022)
* remote: `scripts/get-remote-url spring-petclinic-helm argocd-staging`
* Production
* local [localhost:30023](http://localhost:30023)
* remote: `scripts/get-remote-url spring-petclinic-helm argocd-production`
#### Flux V1

##### PetClinic with plain k8s resources

[Jenkinsfile](applications/petclinic/fluxv1/plain-k8s/Jenkinsfile) for plain `k8s` deployment

* Staging:
* local: [localhost:30001](http://localhost:30001)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-staging`
* Production:
* local: [localhost:30002](http://localhost:30002)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-production`
* QA (example for a 3rd stage)
* local: [localhost:30003](http://localhost:30003)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv1-qa`

##### PetClinic with helm

[Jenkinsfile](applications/petclinic/fluxv1/helm/Jenkinsfile) for `helm` deployment

* Staging
* local: [localhost:30004](http://localhost:30004)
* remote: `scripts/get-remote-url spring-petclinic-helm-springboot fluxv1-staging`
* Production
* local: [localhost:30005](http://localhost:30005)
* remote: `scripts/get-remote-url spring-petclinic-helm-springboot fluxv1-production`

##### 3rd Party app (NGINX) with helm

[Jenkinsfile](applications/nginx/fluxv1/Jenkinsfile)

* Staging
* local: [localhost:30006](http://localhost:30006)
* remote: `scripts/get-remote-url nginx fluxv1-staging`
* Production
* local: [localhost:30007](http://localhost:30007)
* remote: `scripts/get-remote-url nginx fluxv1-production`

#### Flux V2

##### PetClinic with plain k8s resources

[Jenkinsfile](applications/petclinic/fluxv2/plain-k8s/Jenkinsfile)

* Staging
* local: [localhost:30010](http://localhost:30010)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv2-staging`
* Production
* local: [localhost:30011](http://localhost:30011)
* remote: `scripts/get-remote-url spring-petclinic-plain fluxv2-production`

#### ArgoCD

##### PetClinic with plain k8s resources

[Jenkinsfile](applications/petclinic/argocd/plain-k8s/Jenkinsfile) for `plain` deployment

* Staging
* local [localhost:30020](http://localhost:30020)
* remote: `scripts/get-remote-url spring-petclinic-plain argocd-staging`
* Production
* local [localhost:30021](http://localhost:30021)
* remote: `scripts/get-remote-url spring-petclinic-plain argocd-production`

##### PetClinic with helm

[Jenkinsfile](applications/petclinic/argocd/helm/Jenkinsfile) for `helm` deployment

* Staging
* local [localhost:30022](http://localhost:30022)
* remote: `scripts/get-remote-url spring-petclinic-helm argocd-staging`
* Production
* local [localhost:30023](http://localhost:30023)
* remote: `scripts/get-remote-url spring-petclinic-helm argocd-production`

##### 3rd Party app (NGINX) with helm

[Jenkinsfile](applications/nginx/argocd/Jenkinsfile)

* Staging
* local: [localhost:30006](http://localhost:30024)
* remote: `scripts/get-remote-url nginx fluxv1-staging`
* Production
* local: [localhost:30007](http://localhost:30025)
* remote: `scripts/get-remote-url nginx fluxv1-production`