-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
2,683 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#Maven | ||
target/ | ||
pom.xml.tag | ||
pom.xml.releaseBackup | ||
pom.xml.versionsBackup | ||
release.properties | ||
.flattened-pom.xml | ||
|
||
# Eclipse | ||
.project | ||
.classpath | ||
.settings/ | ||
bin/ | ||
|
||
# IntelliJ | ||
.idea | ||
*.ipr | ||
*.iml | ||
*.iws | ||
|
||
# NetBeans | ||
nb-configuration.xml | ||
|
||
# Visual Studio Code | ||
.vscode | ||
.factorypath | ||
|
||
# OSX | ||
.DS_Store | ||
|
||
# Vim | ||
*.swp | ||
*.swo | ||
|
||
# patch | ||
*.orig | ||
*.rej | ||
|
||
# Local environment | ||
.env | ||
|
||
# Plugin directory | ||
/.quarkus/cli/plugins/ | ||
|
||
# Charts dependencies | ||
Chart.lock | ||
/src/main/helm/charts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
name: onecx-bookmark | ||
title: Bookmark Management | ||
version: latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* xref:onecx-bookmark-bff:index.adoc[Backend For Frontend] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
include::onecx-bookmark-bff-attributes.adoc[opts=optional] | ||
|
||
== onecx-bookmark-bff | ||
|
||
include::docs.adoc[opts=optional] | ||
|
||
|
||
include::onecx-bookmark-bff-docs.adoc[opts=optional] |
5 changes: 5 additions & 0 deletions
5
docs/modules/onecx-bookmark-bff/pages/onecx-bookmark-bff-attributes.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
:docker-registry: https://github.com/onecx/onecx-bookmark-bff/pkgs/container/onecx-bookmark-bff | ||
:helm-registry: https://github.com/onecx/onecx-bookmark-bff/pkgs/container/charts%2Fonecx-bookmark-bff | ||
:properties-file: src/main/resources/application.properties | ||
:helm-file: src/main/helm/values.yaml |
109 changes: 109 additions & 0 deletions
109
docs/modules/onecx-bookmark-bff/pages/onecx-bookmark-bff-docs.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
|
||
include::onecx-bookmark-bff-attributes.adoc[opts=optional] | ||
|
||
=== Default properties | ||
|
||
.{properties-file} | ||
[%collapsible%open] | ||
==== | ||
[source,properties,subs=attributes+] | ||
---- | ||
quarkus.http.auth.permission.health.paths=/q/* | ||
quarkus.http.auth.permission.health.policy=permit | ||
quarkus.http.auth.permission.default.paths=/* | ||
quarkus.http.auth.permission.default.policy=authenticated | ||
onecx.permissions.application-id=${quarkus.application.name} | ||
%prod.quarkus.rest-client.onecx_bookmark_svc.url=http://onecx-bookmark-svc:8080 | ||
%prod.quarkus.rest-client.onecx_product_store.url=http://onecx-product-store-svc:8080 | ||
org.eclipse.microprofile.rest.client.propagateHeaders=apm-principal-token | ||
%prod.quarkus.rest-client.onecx_bookmark_svc.providers=io.quarkus.oidc.client.reactive.filter.OidcClientRequestReactiveFilter | ||
%prod.quarkus.rest-client.onecx_product_store.providers=io.quarkus.oidc.client.reactive.filter.OidcClientRequestReactiveFilter | ||
%prod.quarkus.oidc-client.client-id=${quarkus.application.name} | ||
quarkus.openapi-generator.codegen.input-base-dir=src/main/openapi/tmp/openapi/ | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.config-key=onecx_bookmark_svc | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.base-package=gen.org.tkit.onecx.bookmark.client | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.return-response=true | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.additional-api-type-annotations=@org.eclipse.microprofile.rest.client.annotation.RegisterClientHeaders; | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.additional-model-type-annotations=@io.quarkus.runtime.annotations.RegisterForReflection; | ||
quarkus.openapi-generator.onecx_bookmark_svc_yaml.auth.oauth2.token-propagation=false | ||
quarkus.openapi-generator.codegen.spec.onecx_bookmark_svc_yaml.enable-security-generation=false | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.config-key=onecx_product_store_svc | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.base-package=gen.org.tkit.onecx.product.store.client | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.return-response=true | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.type-mappings.File=byte[] | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.additional-api-type-annotations=@org.eclipse.microprofile.rest.client.annotation.RegisterClientHeaders; | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.additional-model-type-annotations=@io.quarkus.runtime.annotations.RegisterForReflection; | ||
quarkus.openapi-generator.onecx_product_store_v1_yaml.auth.oauth2.token-propagation=false | ||
quarkus.openapi-generator.codegen.spec.onecx_product_store_v1_yaml.enable-security-generation=false | ||
---- | ||
==== | ||
|
||
=== Extensions | ||
|
||
include::onecx-bookmark-bff-extensions.adoc[opts=optional] | ||
|
||
=== Container | ||
|
||
{docker-registry}[Docker registry] | ||
|
||
|
||
=== Helm | ||
|
||
{helm-registry}[Helm registry] | ||
|
||
Default values | ||
|
||
.{helm-file} | ||
[source,yaml] | ||
---- | ||
app: | ||
name: bff | ||
image: | ||
repository: "onecx/onecx-bookmark-bff" | ||
operator: | ||
# Permission | ||
permission: | ||
enabled: true | ||
spec: | ||
permissions: | ||
bookmark: | ||
read: permission on all GET requests and POST search | ||
write: permission on PUT, POST, PATCH requests, where objects are saved or updated | ||
delete: permission on all DELETE requests | ||
keycloak: | ||
client: | ||
enabled: true | ||
spec: | ||
kcConfig: | ||
defaultClientScopes: [ ocx-bm:all, ocx-pm:read ] | ||
---- | ||
|
||
kcConfig: | ||
defaultClientScopes: [ ocx-bm:all, ocx-pm:read ] | ||
|
||
---- | ||
pm:read ] | ||
---- | ||
|
||
ission: | ||
enabled: true | ||
spec: | ||
permissions: | ||
bookmark: | ||
read: permission on all GET requests and POST search | ||
write: permission on PUT, POST, PATCH requests, where objects are saved or updated | ||
delete: permission on all DELETE requests | ||
product: | ||
read: permission on all GET requests and POST search | ||
keycloak: | ||
client: | ||
enabled: true | ||
spec: | ||
kcConfig: | ||
defaultClientScopes: [ ocx-hp:all, ocx-ps:read, ocx-pm:read ] | ||
|
||
---- | ||
145 changes: 145 additions & 0 deletions
145
docs/modules/onecx-bookmark-bff/pages/onecx-bookmark-bff-extensions.adoc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
|
||
include::onecx-bookmark-bff-attributes.adoc[opts=optional] | ||
|
||
[.extension.table.searchable, cols="50,.^15,.^15,.^20"] | ||
|=== | ||
h| Extensions | ||
h| Documentation | ||
h| Configuration | ||
h| Version | ||
|
||
| quarkus-rest | ||
|
||
| https://quarkus.io/guides/rest[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-rest.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-smallrye-openapi | ||
| https://quarkus.io/guides/openapi-swaggerui[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-smallrye-openapi.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-rest-jackson | ||
| https://quarkus.io/guides/rest-json[Link] | ||
| | ||
| 3.13.3 | ||
| quarkus-openapi-generator | ||
| https://docs.quarkiverse.io/quarkus-openapi-generator/dev/index.html[Link] | ||
| https://github.com/quarkiverse/quarkus-openapi-generator/blob/2.4.7/docs/modules/ROOT/pages/includes/quarkus-openapi-generator.adoc[Link] | ||
| 2.4.7 | ||
| quarkus-rest-client-reactive-jackson | ||
| https://quarkus.io/guides/rest-client[Link] | ||
| | ||
| 3.13.3 | ||
| tkit-quarkus-log-cdi | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-log-cdi.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-log-cdi.adoc[Link] | ||
| 2.31.0 | ||
| tkit-quarkus-log-rs | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-log-rs.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-log-rs.adoc[Link] | ||
| 2.31.0 | ||
| tkit-quarkus-log-json | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-log-json.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-log-json.adoc[Link] | ||
| 2.31.0 | ||
| tkit-quarkus-rest | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-rest.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-rest.adoc[Link] | ||
| 2.31.0 | ||
| tkit-quarkus-rest-context | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-rest-context.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-rest-context.adoc[Link] | ||
| 2.31.0 | ||
| quarkus-hibernate-validator | ||
| https://quarkus.io/guides/validation[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-hibernate-validator.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-smallrye-health | ||
| https://quarkus.io/guides/smallrye-health[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-smallrye-health.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-opentelemetry | ||
| https://quarkus.io/guides/opentelemetry[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-opentelemetry.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-micrometer-registry-prometheus | ||
| https://quarkus.io/guides/telemetry-micrometer[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-micrometer-registry-prometheus.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-oidc | ||
| https://quarkus.io/guides/security-oidc-bearer-token-authentication-tutorial[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-oidc.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-oidc-client-reactive-filter | ||
| https://quarkus.io/guides/security-openid-connect-client-reference[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-oidc-client-reactive-filter.adoc[Link] | ||
| 3.13.3 | ||
| onecx-permissions | ||
| https://onecx.github.io/docs/onecx-quarkus/current/onecx-quarkus/onecx-permissions.html[Link] | ||
| https://github.com/onecx/onecx-quarkus/blob/0.26.0/docs/modules/onecx-quarkus/pages/includes/onecx-permissions.adoc[Link] | ||
| 0.26.0 | ||
| tkit-quarkus-security | ||
| https://1000kit.github.io/tkit-quarkus/current/tkit-quarkus/tkit-quarkus-security.html[Link] | ||
| https://github.com/1000kit/tkit-quarkus/blob/2.31.0/docs/modules/tkit-quarkus/pages/includes/tkit-quarkus-security.adoc[Link] | ||
| 2.31.0 | ||
| onecx-core | ||
| https://onecx.github.io/docs/onecx-quarkus/current/onecx-quarkus/onecx-core.html[Link] | ||
| | ||
| 0.26.0 | ||
| quarkus-arc | ||
| https://quarkus.io/guides/cdi-reference[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-arc.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-container-image-docker | ||
| https://quarkus.io/guides/container-image[Link] | ||
| https://github.com/quarkusio/quarkusio.github.io/blob/develop/_generated-doc/latest/config/quarkus-container-image-docker.adoc[Link] | ||
| 3.13.3 | ||
| quarkus-oidc-client | ||
| | ||
| | ||
| 3.13.3 | ||
|=== |
Oops, something went wrong.