Skip to content

Commit 7513991

Browse files
osaga workshop (#310)
* grafana work * observability work * observability work * observability work * observability work * observability work * observability work * observability work * observability work * observability work * observability work * observability work * dotnet work * dotnet work * dotnet work * dotnet work * dotnet work * observability, dotnet, go, etc. work - move kafka etc. build to nonjava * observability, dotnet, go, etc. work - move kafka etc. build to nonjava * observability, dotnet, go, etc. work - move kafka etc. build to nonjava * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * enable teq * observability * enable teq * enable teq * enable teq * enable teq * enable teq * observability work * observability work * enable teq * enable teq * enable teq * observ * enable teq * observability dash * observability * osbservability * enable teq * enable teq * enable teq * obs * obs * enable teq * obs * enable teq * observ * obs * converged wording change * fix k6 command * correct workshop link * update workshop link * modifiy python impl to conn.autocommit = False * enable teq * various including security fix in inventory-nodejs * various including security fix in inventory-nodejs * various including security fix in inventory-nodejs * enable teq * inventory-micronaut * inventory-micronaut * inventory-quarkus * inventory-micronaut-native-image * upgrade helidon and db versions * mn and quarkus build wrappers * mn native-image build and deploy fixes * mn native-image build and deploy fixes * mn native-image use JsonObject instead of Jackson * dotnet vault work, etc. * vault work, various languages * Go OCI Vault/Secrets client * displaysetuplogs util script * displaysetuplogs util script * displaysetuplogs util script * displaysetuplogs util script * createsecretfromwallet * createsecretfromwallet * createsecretfromwallet * set order and inventory helidon versions back to 2.4.0 * travelagency readme * createsecretfromwallet * temp eventmesh and osaga java api * travelagencysaga * observability workshop and various fixes * travelagency saga ws work * saga ws work * saga ws * saga ws * saga ws * saga ws * saga ws * osaga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * obs ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws * saga ws
1 parent 2ced95f commit 7513991

File tree

138 files changed

+2573
-7123
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+2573
-7123
lines changed

travelbooking/README.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
#!/bin/bash
2+
# Copyright (c) 2021 Oracle and/or its affiliates.
3+
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
4+
5+
pwd=$(pwd)
6+
echo $pwd
7+
export TNS_ADMIN=$pwd/wallet
8+
echo TNS_ADMIN = $TNS_ADMIN
9+
10+
export sagadb1_tptnsentry=$(grep -i "sagadb1_tp " $TNS_ADMIN/tnsnames.ora)
11+
echo ____________________________________________________
12+
# for each variable, string off begin (based on identifier)
13+
14+
export b="(host="
15+
export sagadb1hostname=$(echo ${sagadb1_tptnsentry/*$b/$b})
16+
export c="))(connect_data="
17+
export sagadb1hostname=$(echo ${sagadb1hostname/$c*/$c})
18+
export sagadb1hostname=${sagadb1hostname#"$b"}
19+
export sagadb1hostname=${sagadb1hostname%"$c"}
20+
echo sagadb1hostname... $sagadb1hostname
21+
22+
export b="(port="
23+
export sagadb1port=$(echo ${sagadb1_tptnsentry/*$b/$b})
24+
export c=")(host"
25+
export sagadb1port=$(echo ${sagadb1port/$c*/$c})
26+
export sagadb1port=${sagadb1port#"$b"}
27+
export sagadb1port=${sagadb1port%"$c"}
28+
echo sagadb1port... $sagadb1port
29+
30+
export b="(service_name="
31+
export sagadb1service_name=$(echo ${sagadb1_tptnsentry/*$b/$b})
32+
export c="))(security"
33+
export sagadb1service_name=$(echo ${sagadb1service_name/$c*/$c})
34+
export sagadb1service_name=${sagadb1service_name#"$b"}
35+
export sagadb1service_name=${sagadb1service_name%"$c"}
36+
echo sagadb1service_name... $sagadb1service_name
37+
38+
export b="(ssl_server_cert_dn=\""
39+
export sagadb1ssl_server_cert_dn=$(echo ${sagadb1_tptnsentry/*$b/$b})
40+
export c="\")))"
41+
export sagadb1ssl_server_cert_dn=$(echo ${sagadb1ssl_server_cert_dn/$c*/$c})
42+
export sagadb1ssl_server_cert_dn=${sagadb1ssl_server_cert_dn#"$b"}
43+
export sagadb1ssl_server_cert_dn=${sagadb1ssl_server_cert_dn%"$c"}
44+
echo sagadb1ssl_server_cert_dn... $sagadb1ssl_server_cert_dn
45+
46+
47+
export sagadb2_tptnsentry=$(grep -i "sagadb2_tp " $TNS_ADMIN/tnsnames.ora)
48+
echo ____________________________________________________
49+
# for each variable, string off begin (based on identifier)
50+
export b="(host="
51+
export sagadb2hostname=$(echo ${sagadb2_tptnsentry/*$b/$b})
52+
export c="))(connect_data="
53+
export sagadb2hostname=$(echo ${sagadb2hostname/$c*/$c})
54+
export sagadb2hostname=${sagadb2hostname#"$b"}
55+
export sagadb2hostname=${sagadb2hostname%"$c"}
56+
echo sagadb2hostname... $sagadb2hostname
57+
58+
export b="(port="
59+
export sagadb2port=$(echo ${sagadb2_tptnsentry/*$b/$b})
60+
export c=")(host"
61+
export sagadb2port=$(echo ${sagadb2port/$c*/$c})
62+
export sagadb2port=${sagadb2port#"$b"}
63+
export sagadb2port=${sagadb2port%"$c"}
64+
echo sagadb2port... $sagadb2port
65+
66+
export b="(service_name="
67+
export sagadb2service_name=$(echo ${sagadb2_tptnsentry/*$b/$b})
68+
export c="))(security"
69+
export sagadb2service_name=$(echo ${sagadb2service_name/$c*/$c})
70+
export sagadb2service_name=${sagadb2service_name#"$b"}
71+
export sagadb2service_name=${sagadb2service_name%"$c"}
72+
echo $sagadb2service_name... $sagadb2service_name
73+
74+
export b="(ssl_server_cert_dn=\""
75+
export sagadb2ssl_server_cert_dn=$(echo ${sagadb2_tptnsentry/*$b/$b})
76+
export c="\")))"
77+
export sagadb2ssl_server_cert_dn=$(echo ${sagadb2ssl_server_cert_dn/$c*/$c})
78+
export sagadb2ssl_server_cert_dn=${sagadb2ssl_server_cert_dn#"$b"}
79+
export sagadb2ssl_server_cert_dn=${sagadb2ssl_server_cert_dn%"$c"}
80+
echo sagadb2ssl_server_cert_dn... $sagadb2ssl_server_cert_dn
81+
echo ____________________________________________________
82+
83+
echo setting up DB links and OSaga infrastructure ...
84+
cd osaga-java-api
85+
mvn clean install
86+
#nohup java -jar
87+
java -jar target/osaga-java-api.jar | grep -v "WARNING"
88+
cd ../
89+

travelbooking/deploy.sh

Lines changed: 0 additions & 18 deletions
This file was deleted.

travelbooking/destroy.sh

Lines changed: 0 additions & 13 deletions
This file was deleted.

travelbooking/env.sh

Lines changed: 0 additions & 64 deletions
This file was deleted.

travelbooking/eventmesh-util/atpaqadmin-deployment.yaml

Lines changed: 0 additions & 93 deletions
This file was deleted.

travelbooking/eventmesh-util/atpaqadmin-service.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

travelbooking/eventmesh-util/build.sh

Lines changed: 0 additions & 26 deletions
This file was deleted.

travelbooking/eventmesh-util/deploy.sh

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)