You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ref/general/configuration/stack-install.adoc
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ For more information about other fields that can be customized in the Kabanero C
56
56
+
57
57
After editing, save your changes. The updated Kabanero CR instance is applied to your cluster.
58
58
59
-
. The Kabanero operator will now load the stacks in the repository. To see a list of all stacks in the `kabanero` namespace, use `oc get stacks -n kabanero`. If the kabanero-operator is unable to apply the stacks, the `Status` section of the Kabanero CR instance or the Stack CR instances will contain more information.
59
+
. The product operator will now load the stacks in the repository. To see a list of all stacks in the `kabanero` namespace, use `oc get stacks -n kabanero`. If the kabanero-operator is unable to apply the stacks, the `Status` section of the Kabanero CR instance or the Stack CR instances will contain more information.
60
60
61
61
== Need help?
62
62
If you have questions, we would like to hear from you.
Copy file name to clipboardExpand all lines: ref/general/configuration/tekton-webhooks.adoc
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
1
:page-layout: doc
2
2
:page-doc-category: Configuration
3
-
:page-title: Connecting Kabanero to GitHub with webhooks
3
+
:page-title: Connecting to GitHub with webhooks
4
4
:sectanchors:
5
5
:page-doc-number: 5.0
6
-
= Connecting Kabanero to GitHub with webhooks
6
+
= Connecting to GitHub with webhooks
7
7
8
8
A webhook is an outbound HTTP request that helps you create a relationship between your GitHub repository and a particular URL, in this case a https://github.com/kabanero-io/kabanero-pipelines/blob/master/README.md[pipeline, window="_blank"]. After you configure the webhook, changes you make in your GitHub repository will trigger the pipeline and its associated tasks.
** Your Kabanero installation must include an instance of the https://github.com/tektoncd/dashboard#installing-the-latest-release[pipelines dashboard, window="_blank"] with the https://github.com/tektoncd/experimental/blob/master/webhooks-extension/README.md[webhooks extension, window="_blank"] and https://github.com/tektoncd/triggers/tree/v0.1.0/docs#tekton-triggers[triggers, window="_blank"] installed.
** The product operator installation will include an instance of the pipelines dashboardwith the webhooks extensionand triggers.
15
15
16
16
== Create a persistent volume
17
17
Pipelines need a persistent volume. For more information, see *Setting up a persistent volume to run pipelines* in the https://kabanero.io/guides/working-with-pipelines/[Build and deploy applications with pipelines, window="_blank"] guide.
@@ -54,14 +54,14 @@ Namespace::
54
54
Select the Kubernetes namespace in which you want to run your pipeline. In this case, choose `kabanero`.
55
55
56
56
Pipeline::
57
-
Select the pipeline in your target Namespace. PipelineRuns (and their accompanying PipelineResources) are created in this namespace. For more information, see https://github.com/kabanero-io/kabanero-pipelines#kabanero-pipelines[Kabanero Pipelines, window="_blank"].
57
+
Select the pipeline in your target Namespace. PipelineRuns (and their accompanying PipelineResources) are created in this namespace. For more information, see https://github.com/kabanero-io/kabanero-pipelines#kabanero-pipelines[Pipelines, window="_blank"].
58
58
59
59
Service Account::
60
60
Select a service account to be used by the PipelineRun. There are two default service account options. Either of these accounts can be used as a template to create your own customized service accounts that fit your pipeline requirements.
61
61
62
62
* If you are deploying pipelines in a single namespace, the `pipeline` service account is provided, which has permissions to build and push an image. This service account can be used with simple pipelines. However, it has limited access to the current namespace and does not work for cross-namespace operations and deployments.
63
63
64
-
* If you need to deploy pipelines across multiple namespaces, the product operator provides the `kabanero-pipeline` service account with this capability. If you are running a custom pipeline that requires more or less access than the kabanero-pipeline service account is configured to provide, do not edit this account. Instead, create a new service account, such as `custom-kabanero-pipeline-sa`, and configure it according to your needs. For example service accounts, see the link:https://github.com/kabanero-io/kabanero-pipelines/tree/master/pipelines/common[Kabanero pipelines repo].
64
+
* If you need to deploy pipelines across multiple namespaces, the product operator provides the `kabanero-pipeline` service account with this capability. If you are running a custom pipeline that requires more or less access than the kabanero-pipeline service account is configured to provide, do not edit this account. Instead, create a new service account, such as `custom-kabanero-pipeline-sa`, and configure it according to your needs using one of the provided service accounts as an example.
65
65
66
66
Docker registry::
67
67
Select the Docker registry where any built images are pushed. Use the same Docker registry that you created a secret for previously. For Docker Hub, use `index.docker.io/<docker_id>`. For an internal registry, use `docker-registry.default.svc:5000/kabanero`. If the namespace that is associated with your internal registry is not `kabanero`, use `docker-registry.default.svc:5000/your-namespace`.
@@ -79,7 +79,7 @@ Select the Docker registry where any built images are pushed. Use the same Docke
79
79
. Check the PipelineRun from your pipelines dashboard.
80
80
* From your pipelines dashboard, select `PipelineRuns` from the sidebar menu. Look for the PipelineRun you just kicked off.
81
81
82
-
Your GitHub repo is connected to Kabanero with a webhook. Changes in your code can now automatically trigger tasks that are specified by the pipeline.
82
+
Your GitHub repo is connected using a webhook. Changes in your code can now automatically trigger tasks that are specified by the pipeline. If you don't see a PipelineRun in your dashboard, see the https://kabanero.io/docs/ref/general/reference/troubleshooting.html#errors-when-using-a-webhook-to-trigger-pipelines[troubleshooting guide].
0 commit comments