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
image: mcr.microsoft.com/dotnet/sdk:6.0 | |
variables: | |
PACKAGE_VERSION: 1.0.0 | |
IMAGE_TAG: saga-service:$PACKAGE_VERSION | |
stages: | |
- build | |
- publish |
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
gitlabUrl: <the-path-to-gitlab> | |
runnerRegistrationToken: <runner-token> | |
rbac: | |
create: true | |
runners: | |
config: | | |
[[runners]] | |
name = "Kubernetes Runner" | |
[runners.kubernetes] | |
image = "ubuntu:20.04" |
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
global: | |
email: | |
from: <your-email> | |
reply_to: <your-email> | |
smtp: | |
address: <mail-server-address> | |
authentication: login | |
enabled: true | |
password: | |
key: password |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<bpm-platform xmlns="http://www.camunda.org/schema/1.0/BpmPlatform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.camunda.org/schema/1.0/BpmPlatform http://www.camunda.org/schema/1.0/BpmPlatform "> | |
<job-executor> | |
<job-acquisition name= "default"> | |
<properties> | |
<property name= "maxWait">500</property> | |
<property name= "waitTimeInMillis">1000</property> | |
</properties> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<bpm-platform xmlns="http://www.camunda.org/schema/1.0/BpmPlatform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.camunda.org/schema/1.0/BpmPlatform http://www.camunda.org/schema/1.0/BpmPlatform "> | |
<job-executor> | |
<job-acquisition name= "default"> | |
<properties> | |
<property name= "maxWait">500</property> | |
<property name= "waitTimeInMillis">1000</property> | |
</properties> |
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
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: pgsql-pv-yt | |
spec: | |
capacity: | |
storage: 5Gi | |
volumeMode: Filesystem | |
accessModes: | |
- ReadWriteOnce |
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
apiVersion: kubegres.reactive-tech.io/v1 | |
kind: Kubegres | |
metadata: | |
name: pgsql | |
namespace: postgres | |
spec: | |
replicas: 1 | |
image: postgres:14.1 | |
database: |
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
schema: 'https://countries.trevorblades.com/' | |
extensions: | |
languageService: | |
cacheSchemaFileForLookup: true |
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
const HelloWorldIntentHandler = { | |
canHandle(handlerInput) { | |
return Alexa.getRequestType(handlerInput.requestEnvelope) === 'IntentRequest' | |
&& Alexa.getIntentName(handlerInput.requestEnvelope) === 'HelloWorldIntent'; | |
}, | |
handle(handlerInput) { | |
const speakOutput = 'Hello World!'; | |
return handlerInput.responseBuilder | |
.speak(speakOutput) |