Skip to content

Commit

Permalink
Minor updates to guides. Changed version for guides
Browse files Browse the repository at this point in the history
  • Loading branch information
bmeklund committed Nov 19, 2024
1 parent 062170d commit b968bc6
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,4 @@ This workshop is based on link:https://antora.org/[Antora] and link:https://gith

To start this workshop, follow the step by step tutorial link for your cluster available below:

http://bmeklund.github.io/quarkus-workshop-sandbox/rhs-quarkus-guides/4.15/index.html
http://bmeklund.github.io/quarkus-workshop-sandbox/rhs-quarkus-guides/RHDS/index.html
2 changes: 1 addition & 1 deletion dev-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ asciidoc:
attributes:
#title: Template Tutorial(Dev Mode)
experimental: true
openshift-version: 4.15
openshift-version: RHDS
project-namespace: workshop
page-pagination: true
extensions:
Expand Down
2 changes: 1 addition & 1 deletion documentation/antora.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rhs-quarkus-guides
title: Quarkus Workshop Guides
version: 4.15
version: RHDS
nav:
- modules/ROOT/nav.adoc

Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/deploy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ And now we can access using `curl` once again. In the Terminal, run this command

[source,sh,role="copypaste copypaste"]
----
curl $(oc get route people -o=go-template --template='{{ .spec.host }}')/hello/greeting/quarkus-on-openshift
curl https://$(oc get route people -o=go-template --template='{{ .spec.host }}')/hello/greeting/quarkus-on-openshift
----

[NOTE]
Expand Down
2 changes: 1 addition & 1 deletion documentation/modules/ROOT/pages/panache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ We can access using `curl` once again to find everyone born in or before the yea

[source,sh,role="copypaste"]
----
curl -s $(oc get route people -o=go-template --template='{{ .spec.host }}')/person/birth/before/2000 | jq
curl -s https://$(oc get route people -o=go-template --template='{{ .spec.host }}')/person/birth/before/2000 | jq
----

Now lets access our GUI for this application. Run the below command to get the URL for your application
Expand Down
5 changes: 3 additions & 2 deletions documentation/modules/ROOT/pages/tracing.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,7 @@ spec:
metadata:
labels:
app.kubernetes.io/name: otel
app.kubernetes.io/part-of: tracing
spec:
containers:
- name: otelcol
Expand Down Expand Up @@ -315,7 +316,7 @@ data:
processors:
exporters:
otlp:
endpoint: jaeger-collector.bmeklund-dev.svc:14250
endpoint: jaeger-collector.%USER_ID%-dev.svc:14250
tls:
ca_file: "/var/run/secrets/kubernetes.io/serviceaccount/service-ca.crt"
logging:
Expand Down Expand Up @@ -612,7 +613,7 @@ Access the endpoint by running the following command:

[source,sh,role="copypaste"]
----
curl -s $(oc get route people -o=go-template --template='{{ .spec.host }}')/person/swpeople | jq
curl -s https://$(oc get route people -o=go-template --template='{{ .spec.host }}')/person/swpeople | jq
----

You should see:
Expand Down

0 comments on commit b968bc6

Please sign in to comment.