Merge pull request #984 from truenas/photoprism_bumpo

Photoprism version bump and strategy fix
This commit is contained in:
Stavros Kois
2023-02-09 16:49:07 +02:00
committed by GitHub
28 changed files with 11 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: '220901'
appVersion: '221118'
dependencies:
- name: common
repository: file://../../../library/common/2207.0.0
@@ -10,4 +10,4 @@ icon: https://photoprism.app/static/icons/logo.svg
keywords:
- media
name: photoprism
version: 1.0.11
version: 1.0.12

View File

@@ -1,4 +1,4 @@
image:
pullPolicy: IfNotPresent
repository: photoprism/photoprism
tag: 220901-bullseye
tag: 221118-jammy

View File

@@ -16,7 +16,7 @@ extraAppVolumeMounts: []
image:
pullPolicy: IfNotPresent
repository: photoprism/photoprism
tag: 220901-bullseye
tag: 221118-jammy
ownerGID: 568
ownerUID: 568
password: admin123

View File

@@ -22,7 +22,7 @@ def newer_mapping(image_tags):
return {}
return {
'tags': {key: f'{version}-bullseye'},
'tags': {key: f'{version}-jammy'},
'app_version': version,
}

View File

@@ -1,5 +1,5 @@
apiVersion: v2
appVersion: '220901'
appVersion: '221118'
dependencies:
- name: common
repository: file://../../../library/common/2207.0.0
@@ -10,4 +10,4 @@ icon: https://photoprism.app/static/icons/logo.svg
keywords:
- media
name: photoprism
version: 1.0.11
version: 1.0.12

View File

@@ -1,4 +1,4 @@
image:
pullPolicy: IfNotPresent
repository: photoprism/photoprism
tag: 220901-bullseye
tag: 221118-jammy

View File

@@ -16,7 +16,7 @@ extraAppVolumeMounts: []
image:
pullPolicy: IfNotPresent
repository: photoprism/photoprism
tag: 220901-bullseye
tag: 221118-jammy
ownerGID: 568
ownerUID: 568
password: admin123

View File

@@ -6,7 +6,7 @@ import re
from catalog_update.upgrade_strategy import datetime_versioning
VERSION_REG = r'2[2-9][0-1][0-9][0-3][0-9]-bullseye'
VERSION_REG = r'2[2-9][0-1][0-9][0-3][0-9]-jammy'
def newer_mapping(image_tags):
@@ -22,7 +22,7 @@ def newer_mapping(image_tags):
return {}
return {
'tags': {key: f'{version}-bullseye'},
'tags': {key: f'{version}-jammy'},
'app_version': version,
}