Skip to content
Merged
Show file tree
Hide file tree
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
44 changes: 22 additions & 22 deletions modules/distr-tracing-tempo-install-cli.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -86,54 +86,54 @@ EOF
$ oc get csv -n openshift-tempo-operator
----

. Create a secret for your object storage bucket by running one of the following commands:
. Create a project of your choice for the *TempoStack* instance that you will create in a subsequent step:

** To create a secret from a YAML file:
** To create a project from standard input without metadata:
+
[source,terminal]
----
$ oc apply -f <secret_file>.yaml
$ oc new-project <project_of_tempostack_instance>
----

** To create a secret from standard input:
** To create a project from standard input with metadata:
+
[source,terminal]
----
$ oc apply -f - << EOF
<object_storage_secret>
apiVersion: project.openshift.io/v1
kind: Project
metadata:
name: <project_of_tempostack_instance>
EOF
----
+
--
include::snippets/distr-tracing-tempo-required-secret-parameters.adoc[]
--
+
--
include::snippets/distr-tracing-tempo-secret-example.adoc[]
--

. Create a project of your choice for the *TempoStack* instance that you will create in the next step:
. In the project that you created for the *TempoStack* instance, create a secret for your object storage bucket by running one of the following commands:

** To create a project from standard input without metadata:
** To create a secret from a YAML file:
+
[source,terminal]
----
$ oc new-project <project_of_tempostack_instance>
$ oc apply -f <secret_file>.yaml
----

** To create a project from standard input with metadata:
** To create a secret from standard input:
+
[source,terminal]
----
$ oc apply -f - << EOF
apiVersion: project.openshift.io/v1
kind: Project
metadata:
name: <project_of_tempostack_instance>
<object_storage_secret>
EOF
----
+
--
include::snippets/distr-tracing-tempo-required-secret-parameters.adoc[]
--
+
--
include::snippets/distr-tracing-tempo-secret-example.adoc[]
--

. Create a *TempoStack* instance in the project that you created for the *TempoStack* instance in the previous step.
. Create a *TempoStack* instance in the project that you created for the *TempoStack* instance.
+
NOTE: You can create multiple *TempoStack* instances in separate projects on the same cluster.
+
Expand Down
6 changes: 3 additions & 3 deletions modules/distr-tracing-tempo-install-web-console.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ This installs the Operator with the default presets:

.. In the *Details* tab of the page of the installed Operator, under *ClusterServiceVersion details*, verify that the installation *Status* is *Succeeded*.

. Create a secret for your object storage bucket: go to *Workloads* -> *Secrets* -> *Create* -> *From YAML*.
. Create a project of your choice for the *TempoStack* instance that you will create in a subsequent step: go to *Home* -> *Projects* -> *Create Project*.

. In the project that you created for the *TempoStack* instance, create a secret for your object storage bucket: go to *Workloads* -> *Secrets* -> *Create* -> *From YAML*.
+
--
include::snippets/distr-tracing-tempo-required-secret-parameters.adoc[]
Expand All @@ -46,8 +48,6 @@ include::snippets/distr-tracing-tempo-required-secret-parameters.adoc[]
include::snippets/distr-tracing-tempo-secret-example.adoc[]
--

. Create a project of your choice for the *TempoStack* instance that you will create in the next step: go to *Home* -> *Projects* -> *Create Project*.

. Create a *TempoStack* instance.
+
NOTE: You can create multiple *TempoStack* instances in separate projects on the same cluster.
Expand Down