-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
210cca8
commit 8240c6d
Showing
4 changed files
with
108 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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,19 @@ | ||
apiVersion: v2 | ||
name: trakkar | ||
description: Traccar to Kalisio Maps integration | ||
version: 1.0.0 | ||
appVersion: 1.0.0 | ||
home: https://github.com/kalisio/trakkar | ||
annotations: | ||
category: Service | ||
keywords: | ||
- geofencing | ||
- kano | ||
dependencies: | ||
- name: kargo | ||
version: x.x.x | ||
repository: file://../kargo | ||
maintainers: | ||
- name: Kalisio | ||
email: contact@kalisio.com | ||
url: https://kalisio.com |
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 @@ | ||
{{- include "kargo.kdk-deployment" . }} |
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,65 @@ | ||
# geokoder default values | ||
|
||
global: | ||
# secret where to share sentitive environment variables | ||
secret: "" | ||
|
||
# commonAnnotations are annotations to be added to all resources (sub-charts are not considered). Evaluated as a template | ||
commonAnnotations: {} | ||
|
||
# commoneLabels are labels to be added to all resources (sub-charts are not considered). Evaluated as a template | ||
commonLabel: {} | ||
|
||
# replicatCount is the number of replicas | ||
replicaCount: 1 | ||
|
||
image: | ||
repository: kalisio/trakkar-gateway | ||
tag: "" | ||
pullPolicy: IfNotPresent | ||
|
||
# forceRestart forces the pod to be restarted when upgrading the chart | ||
forceRestart: false | ||
|
||
containerPort: 3000 | ||
|
||
|
||
# livenessEndpoint is the endpoint to use with liveness probe | ||
livenessEndpoint: "/healthcheck" | ||
|
||
# dataSubPath is the subpath in the the dataVolume to mount | ||
dataSubPath: "" | ||
|
||
# dataVolume is the specification for the volume where the data lies | ||
dataVolume: {} | ||
# nfs: | ||
# server: "host or ip" | ||
# path: "/zpool-foo/partition" | ||
# readOnly: true | ||
|
||
distribution: | ||
# enabled specifies whether or not to use distribution | ||
enabled: true | ||
# basePort specifies the starting port of the port range | ||
basePort: 10030 | ||
# highestPort specifies the ending port of the port range | ||
highestPort: 10039 | ||
# delay specifies the time to wait before starting service discovery | ||
startDelay: "20000" | ||
# redisUrl specifies the redis connection string | ||
redisUrl: | ||
secret: "" | ||
key: "" | ||
|
||
|
||
env: | ||
# debug specifies the list of namespaces to enable debug output | ||
debug: "" | ||
|
||
# resources are resource requests and limits to be applied | ||
resources: {} | ||
|
||
# default security context, run as non root uid 1000 | ||
podSecurityContext: | ||
runAsNonRoot: true | ||
runAsUser: 1000 |