From 0f0ea1d4228e49f36d1b6877bc19a28c5fe1bb85 Mon Sep 17 00:00:00 2001 From: Jakub Al-Khalili Date: Fri, 25 Oct 2019 11:26:04 +0200 Subject: [PATCH] Regenerate website --- docs/docs/developer-guide/index.html | 8 -- docs/docs/developer-guide/tools/index.html | 6 - docs/docs/getting-started/index.html | 16 --- docs/docs/getting-started/index.xml | 114 ------------------ .../getting-started/latest/aks/index.html | 6 - .../latest/configuration/index.html | 6 - .../configure-backup-and-restore/index.html | 6 - .../custom-backup-and-restore/index.html | 6 - .../latest/customization/index.html | 6 - .../latest/deploy-jenkins/index.html | 6 - .../latest/diagnostics/index.html | 6 - docs/docs/getting-started/latest/index.html | 8 -- .../latest/migration/index.html | 6 - .../getting-started/latest/scheme/index.html | 6 - .../getting-started/v0.1.x/aks/index.html | 6 - .../v0.1.x/configuration/index.html | 6 - .../configure-backup-and-restore/index.html | 6 - .../v0.1.x/customization/index.html | 6 - .../v0.1.x/deploy-jenkins/index.html | 6 - .../v0.1.x/diagnostics/index.html | 6 - docs/docs/getting-started/v0.1.x/index.html | 8 -- .../index.html | 6 - .../getting-started/v0.1.x/scheme/index.html | 6 - .../architecture-and-design/index.html | 6 - docs/docs/how-it-works/index.html | 8 -- .../jenkins-docker-images/index.html | 6 - docs/docs/index.html | 8 -- docs/docs/index.xml | 114 ------------------ docs/docs/installation/index.html | 8 -- docs/docs/security/index.html | 8 -- docs/sitemap.xml | 5 - 31 files changed, 425 deletions(-) diff --git a/docs/docs/developer-guide/index.html b/docs/docs/developer-guide/index.html index 8fa8782f..1d91c6f2 100644 --- a/docs/docs/developer-guide/index.html +++ b/docs/docs/developer-guide/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -617,8 +611,6 @@ kubectl get secret jenkins-operator-credentials-<cr_name> -o Notifications - - - - diff --git a/docs/docs/getting-started/index.html b/docs/docs/getting-started/index.html index fcbd9df5..2db35ac3 100644 --- a/docs/docs/getting-started/index.html +++ b/docs/docs/getting-started/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -533,16 +527,6 @@ Once you have running Kubernetes cluster you can focus on installing Jen -
-
- Notifications -
-

How to setup operator notifications. -

-
- - -
v0.1.x diff --git a/docs/docs/getting-started/index.xml b/docs/docs/getting-started/index.xml index b520f427..c25cc0d9 100644 --- a/docs/docs/getting-started/index.xml +++ b/docs/docs/getting-started/index.xml @@ -19,119 +19,5 @@ - - Docs: Notifications - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.3.x/notifications/ - Mon, 05 Aug 2019 00:00:00 +0000 - - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.3.x/notifications/ - - - - - -<h2 id="slack">Slack</h2> - -<p>Please follow <a href="https://api.slack.com/incoming-webhooks" target="_blank">this</a> instructions to get web hook URL.</p> - -<p>Create web hook secret with name <code>jenkins-operator-notification-data</code>. Contains key <code>url</code> with provided web hook URL.</p> -<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-bash" data-lang="bash">$ kubectl create secret generic jenkins-operator-notification-data --from-literal<span style="color:#ce5c00;font-weight:bold">=</span><span style="color:#000">url</span><span style="color:#ce5c00;font-weight:bold">=</span>&lt;webhook_url&gt;</code></pre></div> -<p>Example configuration for Slack:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - slack: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - -<h2 id="microsoft-teams">Microsoft Teams</h2> - -<p>Please follow <a href="https://docs.microsoft.com/en-gb/outlook/actionable-messages/send-via-connectors" target="_blank">this</a> instructions to get web hook URL.</p> - -<p>Example configuration for Microsoft Teams:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - teams: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - -<h2 id="mailgun">Mailgun</h2> - -<p>Example configuration for Mailgun:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - mailgun: - domain: &lt;domain&gt; - apiKeySecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; - recipient: &lt;your_email&gt; - from: &lt;mailgun_email&gt; -</code></pre> - -<h2 id="debug-options">Debug options</h2> - -<p>As you see there is two debugging options:</p> - -<ul> -<li><p><code>loggingLevel</code> (warning/info) - Set level of messages to send.</p></li> - -<li><p><code>verbose</code> - Print stacktrace and additional error messages</p></li> -</ul> - -<h2 id="multiple-providers">Multiple providers</h2> - -<p>You can use multiple providers to send notification to another communication channels at the same time. -For example you will send notifications to Slack and Teams.</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: nslack - slack: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; - - loggingLevel: info - verbose: true - name: nteams - teams: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - - - - \ No newline at end of file diff --git a/docs/docs/getting-started/latest/aks/index.html b/docs/docs/getting-started/latest/aks/index.html index 6024aea4..a56b44f0 100644 --- a/docs/docs/getting-started/latest/aks/index.html +++ b/docs/docs/getting-started/latest/aks/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/configuration/index.html b/docs/docs/getting-started/latest/configuration/index.html index d811763e..68aee8ad 100644 --- a/docs/docs/getting-started/latest/configuration/index.html +++ b/docs/docs/getting-started/latest/configuration/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html index ad0de406..d22d3776 100644 --- a/docs/docs/getting-started/latest/configure-backup-and-restore/index.html +++ b/docs/docs/getting-started/latest/configure-backup-and-restore/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/custom-backup-and-restore/index.html b/docs/docs/getting-started/latest/custom-backup-and-restore/index.html index 794c4694..30adc520 100644 --- a/docs/docs/getting-started/latest/custom-backup-and-restore/index.html +++ b/docs/docs/getting-started/latest/custom-backup-and-restore/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/customization/index.html b/docs/docs/getting-started/latest/customization/index.html index b70ff807..1f738947 100644 --- a/docs/docs/getting-started/latest/customization/index.html +++ b/docs/docs/getting-started/latest/customization/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/deploy-jenkins/index.html b/docs/docs/getting-started/latest/deploy-jenkins/index.html index de916b3a..625f18ad 100644 --- a/docs/docs/getting-started/latest/deploy-jenkins/index.html +++ b/docs/docs/getting-started/latest/deploy-jenkins/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/diagnostics/index.html b/docs/docs/getting-started/latest/diagnostics/index.html index 79c2158e..ab40e71f 100644 --- a/docs/docs/getting-started/latest/diagnostics/index.html +++ b/docs/docs/getting-started/latest/diagnostics/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/index.html b/docs/docs/getting-started/latest/index.html index b7737dcf..bda7772a 100644 --- a/docs/docs/getting-started/latest/index.html +++ b/docs/docs/getting-started/latest/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -597,8 +591,6 @@ Once you have running Kubernetes cluster you can focus on installing Jen - -
Diagnostics diff --git a/docs/docs/getting-started/latest/migration/index.html b/docs/docs/getting-started/latest/migration/index.html index 91d578af..927d6868 100644 --- a/docs/docs/getting-started/latest/migration/index.html +++ b/docs/docs/getting-started/latest/migration/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/latest/scheme/index.html b/docs/docs/getting-started/latest/scheme/index.html index ec173ad1..b8386837 100644 --- a/docs/docs/getting-started/latest/scheme/index.html +++ b/docs/docs/getting-started/latest/scheme/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/aks/index.html b/docs/docs/getting-started/v0.1.x/aks/index.html index 539ef523..f32cefa7 100644 --- a/docs/docs/getting-started/v0.1.x/aks/index.html +++ b/docs/docs/getting-started/v0.1.x/aks/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/configuration/index.html b/docs/docs/getting-started/v0.1.x/configuration/index.html index c044a98f..eb6c5ce3 100644 --- a/docs/docs/getting-started/v0.1.x/configuration/index.html +++ b/docs/docs/getting-started/v0.1.x/configuration/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/configure-backup-and-restore/index.html b/docs/docs/getting-started/v0.1.x/configure-backup-and-restore/index.html index 399bb598..9f058018 100644 --- a/docs/docs/getting-started/v0.1.x/configure-backup-and-restore/index.html +++ b/docs/docs/getting-started/v0.1.x/configure-backup-and-restore/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/customization/index.html b/docs/docs/getting-started/v0.1.x/customization/index.html index a0ed28d8..b369f64c 100644 --- a/docs/docs/getting-started/v0.1.x/customization/index.html +++ b/docs/docs/getting-started/v0.1.x/customization/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/deploy-jenkins/index.html b/docs/docs/getting-started/v0.1.x/deploy-jenkins/index.html index 4e267d72..c51f922e 100644 --- a/docs/docs/getting-started/v0.1.x/deploy-jenkins/index.html +++ b/docs/docs/getting-started/v0.1.x/deploy-jenkins/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/diagnostics/index.html b/docs/docs/getting-started/v0.1.x/diagnostics/index.html index 53fe184d..41f67c28 100644 --- a/docs/docs/getting-started/v0.1.x/diagnostics/index.html +++ b/docs/docs/getting-started/v0.1.x/diagnostics/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/index.html b/docs/docs/getting-started/v0.1.x/index.html index 89219d7c..b04e04a7 100644 --- a/docs/docs/getting-started/v0.1.x/index.html +++ b/docs/docs/getting-started/v0.1.x/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -580,8 +574,6 @@ Once you have running Kubernetes cluster you can focus on installing Jen - - diff --git a/docs/docs/getting-started/v0.1.x/migration-guide-v1alpha1-to-v1alpha2/index.html b/docs/docs/getting-started/v0.1.x/migration-guide-v1alpha1-to-v1alpha2/index.html index 0d5d4fa3..a6cfee1a 100644 --- a/docs/docs/getting-started/v0.1.x/migration-guide-v1alpha1-to-v1alpha2/index.html +++ b/docs/docs/getting-started/v0.1.x/migration-guide-v1alpha1-to-v1alpha2/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/getting-started/v0.1.x/scheme/index.html b/docs/docs/getting-started/v0.1.x/scheme/index.html index 1bfd67ae..06efaf75 100644 --- a/docs/docs/getting-started/v0.1.x/scheme/index.html +++ b/docs/docs/getting-started/v0.1.x/scheme/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/how-it-works/architecture-and-design/index.html b/docs/docs/how-it-works/architecture-and-design/index.html index a0642da2..a204156f 100644 --- a/docs/docs/how-it-works/architecture-and-design/index.html +++ b/docs/docs/how-it-works/architecture-and-design/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/how-it-works/index.html b/docs/docs/how-it-works/index.html index fd8d5a10..3c6b153f 100644 --- a/docs/docs/how-it-works/index.html +++ b/docs/docs/how-it-works/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -548,8 +542,6 @@ - - diff --git a/docs/docs/how-it-works/jenkins-docker-images/index.html b/docs/docs/how-it-works/jenkins-docker-images/index.html index 78d14fea..3979119d 100644 --- a/docs/docs/how-it-works/jenkins-docker-images/index.html +++ b/docs/docs/how-it-works/jenkins-docker-images/index.html @@ -275,12 +275,6 @@ - - Notifications - - - - diff --git a/docs/docs/index.html b/docs/docs/index.html index 7a8d97da..12391632 100644 --- a/docs/docs/index.html +++ b/docs/docs/index.html @@ -265,12 +265,6 @@ - - Notifications - - - - @@ -540,8 +534,6 @@ - - diff --git a/docs/docs/index.xml b/docs/docs/index.xml index 5a880cbe..7e10d9f2 100644 --- a/docs/docs/index.xml +++ b/docs/docs/index.xml @@ -1492,120 +1492,6 @@ When Jenkins configuration jobs are removed, you must use the following command - - Docs: Notifications - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.3.x/notifications/ - Mon, 05 Aug 2019 00:00:00 +0000 - - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.3.x/notifications/ - - - - - -<h2 id="slack">Slack</h2> - -<p>Please follow <a href="https://api.slack.com/incoming-webhooks" target="_blank">this</a> instructions to get web hook URL.</p> - -<p>Create web hook secret with name <code>jenkins-operator-notification-data</code>. Contains key <code>url</code> with provided web hook URL.</p> -<div class="highlight"><pre style="background-color:#f8f8f8;-moz-tab-size:4;-o-tab-size:4;tab-size:4"><code class="language-bash" data-lang="bash">$ kubectl create secret generic jenkins-operator-notification-data --from-literal<span style="color:#ce5c00;font-weight:bold">=</span><span style="color:#000">url</span><span style="color:#ce5c00;font-weight:bold">=</span>&lt;webhook_url&gt;</code></pre></div> -<p>Example configuration for Slack:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - slack: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - -<h2 id="microsoft-teams">Microsoft Teams</h2> - -<p>Please follow <a href="https://docs.microsoft.com/en-gb/outlook/actionable-messages/send-via-connectors" target="_blank">this</a> instructions to get web hook URL.</p> - -<p>Example configuration for Microsoft Teams:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - teams: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - -<h2 id="mailgun">Mailgun</h2> - -<p>Example configuration for Mailgun:</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: &lt;name&gt; - mailgun: - domain: &lt;domain&gt; - apiKeySecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; - recipient: &lt;your_email&gt; - from: &lt;mailgun_email&gt; -</code></pre> - -<h2 id="debug-options">Debug options</h2> - -<p>As you see there is two debugging options:</p> - -<ul> -<li><p><code>loggingLevel</code> (warning/info) - Set level of messages to send.</p></li> - -<li><p><code>verbose</code> - Print stacktrace and additional error messages</p></li> -</ul> - -<h2 id="multiple-providers">Multiple providers</h2> - -<p>You can use multiple providers to send notification to another communication channels at the same time. -For example you will send notifications to Slack and Teams.</p> - -<pre><code>kind: Jenkins -spec: - master: - notifications: - - loggingLevel: info - verbose: true - name: nslack - slack: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; - - loggingLevel: info - verbose: true - name: nteams - teams: - webHookURLSecretKeySelector: - secret: - name: &lt;secret_name&gt; - key: &lt;key&gt; -</code></pre> - - - - Docs: Tools https://jenkinsci.github.io/kubernetes-operator/docs/developer-guide/tools/ diff --git a/docs/docs/installation/index.html b/docs/docs/installation/index.html index e899f88d..e8e313a0 100644 --- a/docs/docs/installation/index.html +++ b/docs/docs/installation/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -569,8 +563,6 @@ - - diff --git a/docs/docs/security/index.html b/docs/docs/security/index.html index f94d57be..dfaac401 100644 --- a/docs/docs/security/index.html +++ b/docs/docs/security/index.html @@ -268,12 +268,6 @@ - - Notifications - - - - @@ -617,8 +611,6 @@ $ kubectl -n jenkins apply -f role_binding_jenkins.yaml
- - diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 4118b10c..a8e8926e 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -92,11 +92,6 @@ 2019-08-05T00:00:00+00:00 - - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.3.x/notifications/ - 2019-08-05T00:00:00+00:00 - - https://jenkinsci.github.io/kubernetes-operator/docs/getting-started/v0.1.x/ 2019-08-05T00:00:00+00:00