mirror of
https://github.com/invoiceninja/dockerfiles.git
synced 2026-01-06 14:37:26 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
11c8901fe4 | ||
|
|
3814e957e0 |
18
.github/workflows/build_push.yml
vendored
18
.github/workflows/build_push.yml
vendored
@@ -44,13 +44,13 @@ jobs:
|
|||||||
id: buildx
|
id: buildx
|
||||||
uses: docker/setup-buildx-action@v1
|
uses: docker/setup-buildx-action@v1
|
||||||
|
|
||||||
- name: Cache Docker layers
|
# - name: Cache Docker layers
|
||||||
uses: actions/cache@v2
|
# uses: actions/cache@v2
|
||||||
with:
|
# with:
|
||||||
path: /tmp/.buildx-cache
|
# path: /tmp/.buildx-cache
|
||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
# key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||||
restore-keys: |
|
# restore-keys: |
|
||||||
${{ runner.os }}-buildx-
|
# ${{ runner.os }}-buildx-
|
||||||
|
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
@@ -70,8 +70,8 @@ jobs:
|
|||||||
platforms: linux/amd64,linux/arm64
|
platforms: linux/amd64,linux/arm64
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
push: ${{ github.event_name != 'pull_request' }}
|
||||||
tags: ${{ steps.prep.outputs.tags }}
|
tags: ${{ steps.prep.outputs.tags }}
|
||||||
cache-from: type=local,src=/tmp/.buildx-cache
|
cache-from: invoiceninja/invoiceninja:${{ steps.prep.outputs.major }}
|
||||||
cache-to: type=local,dest=/tmp/.buildx-cache
|
cache-to: type=inline
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image digest
|
||||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
||||||
|
|||||||
@@ -13,11 +13,11 @@ type: application
|
|||||||
# This is the chart version. This version number should be incremented each time you make changes
|
# This is the chart version. This version number should be incremented each time you make changes
|
||||||
# to the chart and its templates, including the app version.
|
# to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 0.2.0
|
version: 0.3.0
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
# follow Semantic Versioning. They should reflect the version the application is using.
|
# follow Semantic Versioning. They should reflect the version the application is using.
|
||||||
appVersion: 5.1.32
|
appVersion: 5.1.35
|
||||||
keywords:
|
keywords:
|
||||||
- invoiceninja
|
- invoiceninja
|
||||||
home: https://github.com/lwj5/invoiceninja-chart
|
home: https://github.com/lwj5/invoiceninja-chart
|
||||||
|
|||||||
@@ -163,9 +163,12 @@ The following table shows the configuration options for the Invoiceninja helm ch
|
|||||||
| `redis.enabled` | If external redis is used, set it to `false` | `true` |
|
| `redis.enabled` | If external redis is used, set it to `false` | `true` |
|
||||||
| `redis.password` | Redis password | `nil` |
|
| `redis.password` | Redis password | `nil` |
|
||||||
| `redis.usePassword` | Use redis password | `false` |
|
| `redis.usePassword` | Use redis password | `false` |
|
||||||
|
| `redis.sentinel.enabled` | Enable sentinel containers | `true` |
|
||||||
|
| `redis.sentinel.usePassword` | Use password for sentinel containers | `false` |
|
||||||
| `externalRedis.host` | Host of the external redis | `nil` |
|
| `externalRedis.host` | Host of the external redis | `nil` |
|
||||||
| `externalRedis.port` | Port of the external redis | `6379` |
|
| `externalRedis.port` | Port of the external redis | `6379` |
|
||||||
| `externalRedis.password` | Password for the external redis | `nil` |
|
| `externalRedis.password` | Password for the external redis | `nil` |
|
||||||
|
| `externalRedis.sentinel` | Using sentinels | `false` |
|
||||||
| `externalRedis.databases.default` | Database to use by default | `0` |
|
| `externalRedis.databases.default` | Database to use by default | `0` |
|
||||||
| `externalRedis.databases.cache` | Database to use by cache | `1` |
|
| `externalRedis.databases.cache` | Database to use by cache | `1` |
|
||||||
|
|
||||||
|
|||||||
@@ -140,7 +140,11 @@ Return the Redis Hostname
|
|||||||
*/}}
|
*/}}
|
||||||
{{- define "invoiceninja.redisHost" -}}
|
{{- define "invoiceninja.redisHost" -}}
|
||||||
{{- if .Values.redis.enabled }}
|
{{- if .Values.redis.enabled }}
|
||||||
|
{{- if .Values.redis.sentinel.enabled }}
|
||||||
|
{{- printf "%s-%s" (include "invoiceninja.redis.fullname" .) "headless" | trunc 63 | trimSuffix "-" -}}
|
||||||
|
{{- else }}
|
||||||
{{- printf "%s-%s" (include "invoiceninja.redis.fullname" .) "master" | trunc 63 | trimSuffix "-" -}}
|
{{- printf "%s-%s" (include "invoiceninja.redis.fullname" .) "master" | trunc 63 | trimSuffix "-" -}}
|
||||||
|
{{- end -}}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{- printf "%s" .Values.externalRedis.host -}}
|
{{- printf "%s" .Values.externalRedis.host -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
@@ -151,7 +155,11 @@ Return the Redis Port
|
|||||||
*/}}
|
*/}}
|
||||||
{{- define "invoiceninja.redisPort" -}}
|
{{- define "invoiceninja.redisPort" -}}
|
||||||
{{- if .Values.redis.enabled }}
|
{{- if .Values.redis.enabled }}
|
||||||
|
{{- if .Values.redis.sentinel.enabled }}
|
||||||
|
{{- printf "26379" -}}
|
||||||
|
{{- else }}
|
||||||
{{- printf "6379" -}}
|
{{- printf "6379" -}}
|
||||||
|
{{- end -}}
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
{{- printf "%d" (.Values.externalRedis.port | int ) -}}
|
{{- printf "%d" (.Values.externalRedis.port | int ) -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
@@ -189,3 +197,36 @@ Return the Redis Secret Name
|
|||||||
{{- printf "%s" (include "invoiceninja.redis.fullname" .) -}}
|
{{- printf "%s" (include "invoiceninja.redis.fullname" .) -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Return the Broadcast Connection Name
|
||||||
|
*/}}
|
||||||
|
{{- define "invoiceninja.redisBroadcastConnection" -}}
|
||||||
|
{{- if or (and .Values.redis.enabled .Values.redis.sentinel.enabled) (and .Values.externalRedis.host .Values.externalRedis.sentinel) }}
|
||||||
|
{{- printf "sentinel-default" -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- printf "default" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Return the Cache Connection Name
|
||||||
|
*/}}
|
||||||
|
{{- define "invoiceninja.redisCacheConnection" -}}
|
||||||
|
{{- if or (and .Values.redis.enabled .Values.redis.sentinel.enabled) (and .Values.externalRedis.host .Values.externalRedis.sentinel) }}
|
||||||
|
{{- printf "sentinel-cache" -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- printf "cache" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|
||||||
|
{{/*
|
||||||
|
Return the Broadcast Driver Name
|
||||||
|
*/}}
|
||||||
|
{{- define "invoiceninja.redisQueueConnection" -}}
|
||||||
|
{{- if or (and .Values.redis.enabled .Values.redis.sentinel.enabled) (and .Values.externalRedis.host .Values.externalRedis.sentinel) }}
|
||||||
|
{{- printf "sentinel-default" -}}
|
||||||
|
{{- else -}}
|
||||||
|
{{- printf "default" -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
|||||||
@@ -22,27 +22,29 @@ data:
|
|||||||
DB_PORT1: {{ include "invoiceninja.databasePort" . | quote }}
|
DB_PORT1: {{ include "invoiceninja.databasePort" . | quote }}
|
||||||
DB_USERNAME1: {{ include "invoiceninja.databaseUser" . | quote }}
|
DB_USERNAME1: {{ include "invoiceninja.databaseUser" . | quote }}
|
||||||
DB_DATABASE1: {{ include "invoiceninja.databaseName" . | quote }}
|
DB_DATABASE1: {{ include "invoiceninja.databaseName" . | quote }}
|
||||||
{{- if not (empty .Values.logChannel) }}
|
{{- if .Values.logChannel }}
|
||||||
LOG_CHANNEL: {{ .Values.logChannel | quote }}
|
LOG_CHANNEL: {{ .Values.logChannel | quote }}
|
||||||
|
{{- else }}
|
||||||
|
LOG_CHANNEL: stderr
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if not (empty .Values.broadcastDriver) }}
|
{{- if .Values.broadcastDriver }}
|
||||||
BROADCAST_DRIVER: {{ .Values.broadcastDriver | quote }}
|
BROADCAST_DRIVER: {{ .Values.broadcastDriver | quote }}
|
||||||
{{- else if or .Values.redis.enabled (not (empty .Values.externalRedis.host)) }}
|
{{- else if or .Values.redis.enabled .Values.externalRedis.host }}
|
||||||
BROADCAST_DRIVER: redis
|
BROADCAST_DRIVER: redis
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if not (empty .Values.cacheDriver) }}
|
{{- if .Values.cacheDriver }}
|
||||||
CACHE_DRIVER: {{ .Values.cacheDriver | quote }}
|
CACHE_DRIVER: {{ .Values.cacheDriver | quote }}
|
||||||
{{- else if or .Values.redis.enabled (not (empty .Values.externalRedis.host)) }}
|
{{- else if or .Values.redis.enabled .Values.externalRedis.host }}
|
||||||
CACHE_DRIVER: redis
|
CACHE_DRIVER: redis
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if not (empty .Values.sessionDriver) }}
|
{{- if .Values.sessionDriver }}
|
||||||
SESSION_DRIVER: {{ .Values.sessionDriver | quote }}
|
SESSION_DRIVER: {{ .Values.sessionDriver | quote }}
|
||||||
{{- else if or .Values.redis.enabled (not (empty .Values.externalRedis.host)) }}
|
{{- else if or .Values.redis.enabled .Values.externalRedis.host }}
|
||||||
SESSION_DRIVER: redis
|
SESSION_DRIVER: redis
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if not (empty .Values.queueConnection) }}
|
{{- if .Values.queueConnection }}
|
||||||
QUEUE_CONNECTION: {{ .Values.queueConnection | quote }}
|
QUEUE_CONNECTION: {{ .Values.queueConnection | quote }}
|
||||||
{{- else if or .Values.redis.enabled (not (empty .Values.externalRedis.host)) }}
|
{{- else if or .Values.redis.enabled .Values.externalRedis.host }}
|
||||||
QUEUE_CONNECTION: redis
|
QUEUE_CONNECTION: redis
|
||||||
{{- end }}
|
{{- end }}
|
||||||
PHANTOMJS_PDF_GENERATION: {{ not .Values.snappdf | quote}}
|
PHANTOMJS_PDF_GENERATION: {{ not .Values.snappdf | quote}}
|
||||||
@@ -50,3 +52,6 @@ data:
|
|||||||
REDIS_PORT: {{ include "invoiceninja.redisPort" . | quote }}
|
REDIS_PORT: {{ include "invoiceninja.redisPort" . | quote }}
|
||||||
REDIS_DB: {{ include "invoiceninja.redisDatabase" . | quote }}
|
REDIS_DB: {{ include "invoiceninja.redisDatabase" . | quote }}
|
||||||
REDIS_CACHE_DB: {{ include "invoiceninja.redisCacheDatabase" . | quote }}
|
REDIS_CACHE_DB: {{ include "invoiceninja.redisCacheDatabase" . | quote }}
|
||||||
|
REDIS_BROADCAST_CONNECTION: {{ include "invoiceninja.redisBroadcastConnection" . | quote }}
|
||||||
|
REDIS_CACHE_CONNECTION: {{ include "invoiceninja.redisCacheConnection" . | quote }}
|
||||||
|
REDIS_QUEUE_CONNECTION: {{ include "invoiceninja.redisQueueConnection" . | quote }}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
image:
|
image:
|
||||||
registry: docker.io
|
registry: docker.io
|
||||||
repository: invoiceninja/invoiceninja
|
repository: invoiceninja/invoiceninja
|
||||||
tag: 5.1.32
|
tag: 5.1.35
|
||||||
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
|
||||||
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
|
||||||
##
|
##
|
||||||
@@ -336,18 +336,19 @@ autoscaling:
|
|||||||
redis:
|
redis:
|
||||||
enabled: true
|
enabled: true
|
||||||
usePassword: false
|
usePassword: false
|
||||||
cluster:
|
sentinel:
|
||||||
enabled: false
|
enabled: true
|
||||||
|
usePassword: false
|
||||||
|
|
||||||
## External Redis Configuration
|
## External Redis Configuration
|
||||||
##
|
##
|
||||||
## All of these values are only used when redis.enabled is set to false
|
## All of these values are only used when redis.enabled is set to false
|
||||||
##
|
##
|
||||||
externalRedis:
|
externalRedis:
|
||||||
## Redis host
|
## Redis/Sentinel host
|
||||||
##
|
##
|
||||||
host: ""
|
host: ""
|
||||||
## Redis port number
|
## Redis/Sentinel port number
|
||||||
##
|
##
|
||||||
port: 6379
|
port: 6379
|
||||||
## Redis password
|
## Redis password
|
||||||
@@ -358,6 +359,8 @@ externalRedis:
|
|||||||
## NOTE: When it's set, the `externalRedis.password` parameter is ignored
|
## NOTE: When it's set, the `externalRedis.password` parameter is ignored
|
||||||
##
|
##
|
||||||
# existingSecret:
|
# existingSecret:
|
||||||
|
## Whether Redis Sentinel are used
|
||||||
|
sentinel: false
|
||||||
## Redis databases
|
## Redis databases
|
||||||
##
|
##
|
||||||
databases:
|
databases:
|
||||||
|
|||||||
Reference in New Issue
Block a user