#38 Update docs
This commit is contained in:
parent
414ba53a1c
commit
a05c496322
|
|
@ -7,7 +7,8 @@ This document describes a getting started guide for **jenkins-operator** and an
|
||||||
3. [Configure Seed Jobs and Pipelines](#configure-seed-jobs-and-pipelines)
|
3. [Configure Seed Jobs and Pipelines](#configure-seed-jobs-and-pipelines)
|
||||||
4. [Install Plugins](#install-plugins)
|
4. [Install Plugins](#install-plugins)
|
||||||
5. [Configure Backup & Restore](#configure-backup-and-restore)
|
5. [Configure Backup & Restore](#configure-backup-and-restore)
|
||||||
6. [Debugging](#debugging)
|
6. [AKS](#aks)
|
||||||
|
7. [Debugging](#debugging)
|
||||||
|
|
||||||
## First Steps
|
## First Steps
|
||||||
|
|
||||||
|
|
@ -448,6 +449,24 @@ spec:
|
||||||
#recoveryOnce: <backup_number> # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored
|
#recoveryOnce: <backup_number> # if want to restore specific backup configure this field and then Jenkins will be restarted and desired backup will be restored
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## AKS
|
||||||
|
|
||||||
|
Azure AKS managed Kubernetes service adds to every pod the following envs:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
- name: KUBERNETES_PORT_443_TCP_ADDR
|
||||||
|
value:
|
||||||
|
- name: KUBERNETES_PORT
|
||||||
|
value: tcp://
|
||||||
|
- name: KUBERNETES_PORT_443_TCP
|
||||||
|
value: tcp://
|
||||||
|
- name: KUBERNETES_SERVICE_HOST
|
||||||
|
value:
|
||||||
|
```
|
||||||
|
|
||||||
|
The operator is aware of it and omits these envs when checking if Jenkins pod envs have been changed. It prevents
|
||||||
|
restart Jenkins pod over and over again.
|
||||||
|
|
||||||
## Debugging
|
## Debugging
|
||||||
|
|
||||||
Turn on debug in **jenkins-operator** deployment:
|
Turn on debug in **jenkins-operator** deployment:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue