Skip to content

Commit

Permalink
feat : added trakkar chart
Browse files Browse the repository at this point in the history
  • Loading branch information
kalisio-nicolas committed Jul 15, 2024
1 parent 210cca8 commit 8240c6d
Show file tree
Hide file tree
Showing 4 changed files with 108 additions and 0 deletions.
23 changes: 23 additions & 0 deletions charts/trakkar/.helmignore
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/
19 changes: 19 additions & 0 deletions charts/trakkar/Chart.yaml
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
1 change: 1 addition & 0 deletions charts/trakkar/templates/deployements.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{{- include "kargo.kdk-deployment" . }}
65 changes: 65 additions & 0 deletions charts/trakkar/values.yaml
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

0 comments on commit 8240c6d

Please sign in to comment.