Fix image links on website
This commit is contained in:
parent
6833f4436c
commit
f5d64e906e
2
go.mod
2
go.mod
|
|
@ -77,3 +77,5 @@ replace (
|
|||
git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
|
||||
github.com/golang/lint v0.0.0-20190409202823-959b441ac422 => golang.org/x/lint v0.0.0-20190409202823-959b441ac422
|
||||
)
|
||||
|
||||
go 1.13
|
||||
|
|
|
|||
|
|
@ -122,11 +122,11 @@ spec:
|
|||
|
||||
You can verify if deploy keys were successfully configured in Jenkins **Credentials** tab.
|
||||
|
||||

|
||||

|
||||
|
||||
You can verify if your pipelines were successfully configured in Jenkins Seed Job console output.
|
||||
|
||||

|
||||

|
||||
|
||||
If your GitHub repository is **private** you have to configure SSH or username/password authentication.
|
||||
|
||||
|
|
|
|||
|
|
@ -88,4 +88,4 @@ Connect to Jenkins (actual Kubernetes cluster):
|
|||
kubectl port-forward jenkins-<cr_name> 8080:8080
|
||||
```
|
||||
Then open browser with address `http://localhost:8080`.
|
||||

|
||||

|
||||
|
|
|
|||
|
|
@ -124,11 +124,11 @@ spec:
|
|||
|
||||
You can verify if deploy keys were successfully configured in Jenkins **Credentials** tab.
|
||||
|
||||

|
||||

|
||||
|
||||
You can verify if your pipelines were successfully configured in Jenkins Seed Job console output.
|
||||
|
||||

|
||||

|
||||
|
||||
If your GitHub repository is **private** you have to configure SSH or username/password authentication.
|
||||
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ The **jenkins-operator** design incorporates the following concepts:
|
|||
- watches any changes of manifests and maintain the desired state according to deployed custom resource manifest
|
||||
- implements the main reconciliation loop which consists of two smaller reconciliation loops - base and user
|
||||
|
||||

|
||||

|
||||
|
||||
**Base** reconciliation loop takes care of reconciling base Jenkins configuration, which consists of:
|
||||
- Ensure Manifests - monitors any changes in manifests
|
||||
|
|
@ -25,7 +25,7 @@ The **jenkins-operator** design incorporates the following concepts:
|
|||
- Ensure User Configuration - executed user provided configuration, like groovy scripts, configuration as code or plugins
|
||||
- Ensure Backup Job - creates Backup job and ensures that backup has been successfully performed
|
||||
|
||||

|
||||

|
||||
|
||||
## Operator State
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue