This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Knot.x container running with environment, fixed #61
- Loading branch information
1 parent
a9d3c83
commit 9d77e1d
Showing
13 changed files
with
538 additions
and
0 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
aem/gradle/environment/httpd/conf/vhost/knotx.example.com.conf
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,7 @@ | ||
<VirtualHost *:80> | ||
ServerName knotx.example.com | ||
|
||
ProxyPass "/" "http://knotx:8092/" | ||
ProxyPassReverse "/" "http://knotx:8092/" | ||
|
||
</VirtualHost> |
10 changes: 10 additions & 0 deletions
10
...dle/environment/knotx/conf/META-INF/services/io.knotx.fragments.handler.api.ActionFactory
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,10 @@ | ||
# FixMe - this was fixed after RC1 release and may be removed when RC2 is released | ||
|
||
# behaviours | ||
io.knotx.fragments.handler.action.CircuitBreakerActionFactory | ||
io.knotx.fragments.handler.action.InMemoryCacheActionFactory | ||
|
||
# pre-defined actions | ||
io.knotx.fragments.handler.action.InlineBodyActionFactory | ||
io.knotx.fragments.handler.action.InlinePayloadActionFactory | ||
io.knotx.fragments.handler.action.KnotFactory |
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,12 @@ | ||
########### Modules to start ########### | ||
# Modules map specify a list of verticles to be started by Knot.x. | ||
# Each line should have a form of <alias>=<verticle-class-name> | ||
# where alias is just a name that you can use later in order to define configuration for the module | ||
# verticle-class-name is a fully qualified class name of the verticle. | ||
# | ||
# This JSON object is filled in included files. | ||
modules {} | ||
|
||
|
||
include required(classpath("server.conf")) | ||
include required(classpath("knots/templateEngineStack.conf")) |
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,15 @@ | ||
{ | ||
"configRetrieverOptions": { | ||
"scanPeriod": 5000, | ||
"stores": [ | ||
{ | ||
"type": "file", | ||
"format": "conf", | ||
"config": { | ||
"path": "${KNOTX_HOME}/conf/application.conf" | ||
}, | ||
"optional": false | ||
} | ||
] | ||
} | ||
} |
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,171 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
~ Copyright 2017 Red Hat, Inc. | ||
~ | ||
~ Red Hat licenses this file to you under the Apache License, version 2.0 | ||
~ (the "License"); you may not use this file except in compliance with the | ||
~ License. You may obtain a copy of the License at: | ||
~ | ||
~ http://www.apache.org/licenses/LICENSE-2.0 | ||
~ | ||
~ Unless required by applicable law or agreed to in writing, software | ||
~ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
~ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
~ License for the specific language governing permissions and limitations | ||
~ under the License. | ||
--> | ||
|
||
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-3.10.xsd" | ||
xmlns="http://www.hazelcast.com/schema/config" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<properties> | ||
<property name="hazelcast.mancenter.enabled">false</property> | ||
<property name="hazelcast.memcache.enabled">false</property> | ||
<property name="hazelcast.rest.enabled">false</property> | ||
<property name="hazelcast.wait.seconds.before.join">5</property> | ||
</properties> | ||
|
||
<group> | ||
<name>dev</name> | ||
<password>dev-pass</password> | ||
</group> | ||
<management-center enabled="false">http://localhost:8080/mancenter</management-center> | ||
<network> | ||
<port auto-increment="true" port-count="10000">5701</port> | ||
<outbound-ports> | ||
<!-- | ||
Allowed port range when connecting to other nodes. | ||
0 or * means use system provided port. | ||
--> | ||
<ports>0</ports> | ||
</outbound-ports> | ||
<join> | ||
<multicast enabled="true"> | ||
<multicast-group>224.2.2.3</multicast-group> | ||
<multicast-port>54327</multicast-port> | ||
</multicast> | ||
<tcp-ip enabled="false"> | ||
<interface>192.168.1.28</interface> | ||
</tcp-ip> | ||
<aws enabled="false"> | ||
<access-key>my-access-key</access-key> | ||
<secret-key>my-secret-key</secret-key> | ||
<!--optional, default is us-east-1 --> | ||
<region>us-west-1</region> | ||
<!--optional, default is ec2.amazonaws.com. If set, region shouldn't be set as it will override this property --> | ||
<host-header>ec2.amazonaws.com</host-header> | ||
<!-- optional, only instances belonging to this group will be discovered, default will try all running instances --> | ||
<security-group-name>hazelcast-sg</security-group-name> | ||
<tag-key>type</tag-key> | ||
<tag-value>hz-nodes</tag-value> | ||
</aws> | ||
</join> | ||
<interfaces enabled="false"> | ||
<interface>10.10.1.*</interface> | ||
</interfaces> | ||
<ssl enabled="false"/> | ||
<socket-interceptor enabled="false"/> | ||
<symmetric-encryption enabled="false"> | ||
<!-- | ||
encryption algorithm such as | ||
DES/ECB/PKCS5Padding, | ||
PBEWithMD5AndDES, | ||
AES/CBC/PKCS5Padding, | ||
Blowfish, | ||
DESede | ||
--> | ||
<algorithm>PBEWithMD5AndDES</algorithm> | ||
<!-- salt value to use when generating the secret key --> | ||
<salt>thesalt</salt> | ||
<!-- pass phrase to use when generating the secret key --> | ||
<password>thepass</password> | ||
<!-- iteration count to use when generating the secret key --> | ||
<iteration-count>19</iteration-count> | ||
</symmetric-encryption> | ||
</network> | ||
<partition-group enabled="false"/> | ||
<executor-service name="default"> | ||
<pool-size>16</pool-size> | ||
<!--Queue capacity. 0 means Integer.MAX_VALUE.--> | ||
<queue-capacity>0</queue-capacity> | ||
</executor-service> | ||
|
||
<multimap name="__vertx.subs"> | ||
|
||
<!-- | ||
Number of backups. If 1 is set as the backup-count for example, | ||
then all entries of the map will be copied to another JVM for | ||
fail-safety. 0 means no backup. | ||
--> | ||
<backup-count>1</backup-count> | ||
</multimap> | ||
|
||
<map name="__vertx.haInfo"> | ||
|
||
<!-- | ||
Number of backups. If 1 is set as the backup-count for example, | ||
then all entries of the map will be copied to another JVM for | ||
fail-safety. 0 means no backup. | ||
--> | ||
<backup-count>1</backup-count> | ||
<!-- | ||
Maximum number of seconds for each entry to stay in the map. Entries that are | ||
older than <time-to-live-seconds> and not updated for <time-to-live-seconds> | ||
will get automatically evicted from the map. | ||
Any integer between 0 and Integer.MAX_VALUE. 0 means infinite. Default is 0. | ||
--> | ||
<time-to-live-seconds>0</time-to-live-seconds> | ||
<!-- | ||
Maximum number of seconds for each entry to stay idle in the map. Entries that are | ||
idle(not touched) for more than <max-idle-seconds> will get | ||
automatically evicted from the map. Entry is touched if get, put or containsKey is called. | ||
Any integer between 0 and Integer.MAX_VALUE. 0 means infinite. Default is 0. | ||
--> | ||
<max-idle-seconds>0</max-idle-seconds> | ||
<!-- | ||
Valid values are: | ||
NONE (no eviction), | ||
LRU (Least Recently Used), | ||
LFU (Least Frequently Used). | ||
NONE is the default. | ||
--> | ||
<eviction-policy>NONE</eviction-policy> | ||
<!-- | ||
Maximum size of the map. When max size is reached, | ||
map is evicted based on the policy defined. | ||
Any integer between 0 and Integer.MAX_VALUE. 0 means | ||
Integer.MAX_VALUE. Default is 0. | ||
--> | ||
<max-size policy="PER_NODE">0</max-size> | ||
<!-- | ||
When max. size is reached, specified percentage of | ||
the map will be evicted. Any integer between 0 and 100. | ||
If 25 is set for example, 25% of the entries will | ||
get evicted. | ||
--> | ||
<eviction-percentage>25</eviction-percentage> | ||
<!-- | ||
While recovering from split-brain (network partitioning), | ||
map entries in the small cluster will merge into the bigger cluster | ||
based on the policy set here. When an entry merge into the | ||
cluster, there might an existing entry with the same key already. | ||
Values of these entries might be different for that same key. | ||
Which value should be set for the key? Conflict is resolved by | ||
the policy set here. Default policy is PutIfAbsentMapMergePolicy | ||
There are built-in merge policies such as | ||
com.hazelcast.map.merge.PassThroughMergePolicy; entry will be added if there is no existing entry for the key. | ||
com.hazelcast.map.merge.PutIfAbsentMapMergePolicy ; entry will be added if the merging entry doesn't exist in the cluster. | ||
com.hazelcast.map.merge.HigherHitsMapMergePolicy ; entry with the higher hits wins. | ||
com.hazelcast.map.merge.LatestUpdateMapMergePolicy ; entry with the latest update wins. | ||
--> | ||
<merge-policy>com.hazelcast.map.merge.LatestUpdateMapMergePolicy</merge-policy> | ||
|
||
</map> | ||
|
||
<!-- Used internally in Vert.x to implement async locks --> | ||
<semaphore name="__vertx.*"> | ||
<initial-permits>1</initial-permits> | ||
</semaphore> | ||
|
||
</hazelcast> |
31 changes: 31 additions & 0 deletions
31
aem/gradle/environment/knotx/conf/knots/templateEngineKnot.conf
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,31 @@ | ||
# Vert.x event bus delivery options used when communicating with other verticles | ||
# see http://vertx.io/docs/vertx-core/dataobjects.html#DeliveryOptions for the details what can be configured | ||
# deliveryOptions {} | ||
|
||
# Sets the default engine that will be used when no template engine strategy is specified in the snippet | ||
defaultEngine = handlebars | ||
|
||
engines = [ | ||
{ | ||
name = handlebars | ||
config = { | ||
# Algorithm used to build a hash key of the compiled handlebars snippets. | ||
# The hash is computed for the snippet handlebars source code using a selected algorithm. | ||
# The name should be a standard Java Security name (such as "SHA", "MD5", and so on). | ||
# Default value is MD5 | ||
# | ||
# cacheKeyAlgorithm = MD5 | ||
|
||
# Size of the compiled snippets cache. After reaching the max size, new elements will replace the oldest one. | ||
cacheSize = 1000 | ||
|
||
# Symbol used as a start delimiter of handlebars expression. If not use, a default '{{' is used | ||
# | ||
# startDelimiter = | ||
|
||
# Symbol used as a end delimiter of handlebars expression. If not use, a default '}}' is used | ||
# | ||
# endDelimiter = | ||
} | ||
} | ||
] |
11 changes: 11 additions & 0 deletions
11
aem/gradle/environment/knotx/conf/knots/templateEngineStack.conf
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,11 @@ | ||
########### Data Bridge Stack ########### | ||
modules { | ||
templateEngine = "io.knotx.te.core.TemplateEngineKnot" | ||
} | ||
|
||
########### Modules configurations ########### | ||
config.templateEngine { | ||
options.config { | ||
include required(classpath("knots/templateEngineKnot.conf")) | ||
} | ||
} |
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,39 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- | ||
Copyright (C) 2019 Knot.x Project | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<configuration> | ||
<include resource="io/knotx/logging/logback/defaults.xml"/> | ||
<include resource="io/knotx/logging/logback/file-appender.xml"/> | ||
<include resource="io/knotx/logging/logback/access.xml" /> | ||
|
||
<appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> | ||
<layout class="ch.qos.logback.classic.PatternLayout"> | ||
<Pattern> | ||
%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n | ||
</Pattern> | ||
</layout> | ||
</appender> | ||
|
||
<logger name="io.knotx" level="TRACE"/> | ||
<logger name="io.vertx" level="TRACE"/> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="FILE"/> | ||
<!-- <appender-ref ref="CONSOLE"/>--> | ||
</root> | ||
</configuration> |
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,32 @@ | ||
openapi: "3.0.0" | ||
info: | ||
version: 1.0.0 | ||
title: Knot.x Stack OAS | ||
description: This is the server API specification. | ||
|
||
servers: | ||
- url: https://{domain}:{port} | ||
description: The local API server | ||
variables: | ||
domain: | ||
default: localhost | ||
description: api domain | ||
port: | ||
enum: | ||
- '8092' | ||
- '443' | ||
default: '8092' | ||
|
||
paths: | ||
/products/*: | ||
get: | ||
operationId: products-get | ||
responses: | ||
default: | ||
description: Remote repository template processing with http action and te | ||
/assets/*: | ||
get: | ||
operationId: assets-get | ||
responses: | ||
default: | ||
description: Return assets as is from the repository |
34 changes: 34 additions & 0 deletions
34
aem/gradle/environment/knotx/conf/routes/handlers/fragmentsHandler.conf
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,34 @@ | ||
########### This configuration is overloaded in integration tests! ########### | ||
tasks { | ||
hello-world { | ||
action = hello-inline | ||
onTransitions { | ||
_success { | ||
action = te | ||
} | ||
} | ||
} | ||
} | ||
|
||
actions { | ||
hello-inline { | ||
factory = inline-payload | ||
config { | ||
alias = hello | ||
payload { | ||
_result { | ||
message = "Hello Knot.x with GAP" | ||
} | ||
} | ||
} | ||
} | ||
te { | ||
factory = "knot" | ||
config { | ||
address = "knotx.knot.te" | ||
deliveryOptions { | ||
sendTimeout = 3000 | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.