Skip to content

Commit a843162

Browse files
authored
chore: nightly release (#1961)
* chore: nightly release Signed-off-by: moabu <47318409+moabu@users.noreply.github.com> * chore: fix chart annotations Signed-off-by: moabu <47318409+moabu@users.noreply.github.com> * ci: address workflows security Signed-off-by: moabu <47318409+moabu@users.noreply.github.com> --------- Signed-off-by: moabu <47318409+moabu@users.noreply.github.com>
1 parent 49c7cca commit a843162

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+256
-231
lines changed

.github/workflows/activate-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
pull_request:
66
types:
77
- closed
8+
permissions:
9+
contents: read
810
jobs:
911
create_release:
1012
if: ${{ (github.event.pull_request.merged == true) && (contains(github.event.pull_request.labels.*.name, 'autorelease:pending')) }}

.github/workflows/build-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ on:
2828
concurrency:
2929
group: run-once
3030
cancel-in-progress: false
31+
permissions:
32+
contents: read
3133
jobs:
3234
build:
3335
if: github.repository_owner == 'GluuFederation'

.github/workflows/build-packages.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
tags:
66
- 'v**'
77
- 'nightly'
8+
permissions:
9+
contents: read
810
jobs:
911
publish_binary_packages:
1012
if: github.repository == 'GluuFederation/flex'
@@ -98,7 +100,7 @@ jobs:
98100
id: run_build
99101
run: |
100102
cd flex/
101-
sudo python${{ matrix.python_version }} flex_setup.py --jans-branch="v1.2.0" --jans-setup-branch="v1.2.0" -download-exit -yes --keep-downloads --keep-setup -force-download
103+
sudo python${{ matrix.python_version }} flex_setup.py --jans-branch="main" --jans-setup-branch="main" -download-exit -yes --keep-downloads --keep-setup -force-download
102104
cp -r /opt/dist flex-src/opt/
103105
cp -r /opt/jans flex-src/opt/
104106
touch flex-src/opt/jans/jans-setup/package

.github/workflows/central_code_quality_check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ on:
2121
- 'docker-**/version.txt'
2222
- '**.md'
2323
workflow_dispatch:
24-
24+
permissions:
25+
contents: read
2526
jobs:
2627
sonar-scan:
2728
name: sonar scan

.github/workflows/clean_github_cache.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ on:
44
types:
55
- closed
66
workflow_dispatch:
7-
7+
permissions:
8+
contents: read
89
jobs:
910
cleanup:
1011
runs-on: ubuntu-latest

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ on:
99
workflow_dispatch:
1010
schedule:
1111
- cron: '0 8 * * *'
12-
12+
permissions:
13+
contents: read
1314
jobs:
1415
analyze:
1516
name: Analyze

.github/workflows/commit-check.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ on:
1515
- reopened
1616
- synchronize
1717
push:
18-
18+
permissions:
19+
contents: read
1920
jobs:
2021
check-commit-message:
2122
name: Check Commit Message
@@ -24,7 +25,7 @@ jobs:
2425
- name: Checkout Project
2526
uses: actions/checkout@v3
2627
with:
27-
# We need to fetch with a depth of 2 for pull_request so we can do HEAD^2
28+
# We need to fetch with a depth of 2 for pull_request, so we can do HEAD^2
2829
fetch-depth: 2
2930

3031
- uses: actions/setup-node@v3

.github/workflows/delete_workflow_runs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
schedule:
44
- cron: '0 0 */2 * *'
55
workflow_dispatch:
6+
permissions:
7+
contents: read
68
jobs:
79
del_runs:
810
runs-on: ubuntu-latest

.github/workflows/docker_build_image.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ jobs:
7474
if: steps.build_docker_image.outputs.build || github.event_name == 'tags'
7575
run: |
7676
sudo apt-get update
77-
#sudo python3 -m pip install --upgrade pip
78-
sudo pip3 install setuptools --upgrade
79-
sudo pip3 install -r ./automation/requirements.txt
77+
sudo python3 -m pip install --upgrade pip || echo "Failed to upgrade pip"
78+
sudo pip3 install --ignore-installed setuptools --upgrade
79+
sudo pip3 install --ignore-installed -r ./automation/requirements.txt
8080
sudo apt-get update
8181
8282
@@ -149,11 +149,11 @@ jobs:
149149
if: github.event_name == 'workflow_dispatch'
150150
run: |
151151
sudo apt-get update
152-
#sudo python3 -m pip install --upgrade pip
153-
sudo pip3 install setuptools --upgrade
154-
sudo pip3 install -r ./automation/requirements.txt
152+
sudo python3 -m pip install --upgrade pip || echo "Failed to upgrade pip"
153+
sudo pip3 install --ignore-installed setuptools --upgrade
154+
sudo pip3 install --ignore-installed -r ./automation/requirements.txt
155155
sudo apt-get update
156-
sudo apt-get install jq
156+
sudo apt-get install --ignore-installed jq
157157
158158
- name: Update Build date in Dockerfile
159159
if: github.event_name == 'workflow_dispatch'

.github/workflows/docker_imagescan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ on:
1818
- "!docker-**/version.txt"
1919
- "!**.md"
2020
workflow_dispatch:
21+
permissions:
22+
contents: read
2123
jobs:
2224
build:
2325
runs-on: ubuntu-latest

.github/workflows/label_pr_issues.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ on:
1313
- opened
1414
- edited
1515
workflow_dispatch:
16-
16+
permissions:
17+
contents: read
1718
jobs:
1819
label:
1920
# This cannot run on forks as the user mo-auto does not have access to forks
@@ -32,11 +33,11 @@ jobs:
3233
- name: Install dependencies
3334
run: |
3435
sudo apt-get update
35-
sudo python3 -m pip install --upgrade pip
36-
sudo pip3 install setuptools --upgrade
37-
sudo pip3 install -r ./automation/requirements.txt
36+
sudo python3 -m pip install --upgrade pip || echo "Failed to upgrade pip"
37+
sudo pip3 install --ignore-installed setuptools --upgrade
38+
sudo pip3 install --ignore-installed -r ./automation/requirements.txt
3839
sudo apt-get update
39-
sudo apt-get install jq
40+
sudo apt-get install --ignore-installed jq
4041
curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of=/usr/share/keyrings/githubcli-archive-keyring.gpg
4142
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable main" | sudo tee /etc/apt/sources.list.d/github-cli.list > /dev/null
4243
sudo apt update

.github/workflows/test-report.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
workflows: ['Test Linux installer']
55
types:
66
- completed
7+
permissions:
8+
contents: read
79
jobs:
810
report:
911
runs-on: ubuntu-latest

.github/workflows/test_docker_linux_installer.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
- main
1212
paths:
1313
- "flex-linux-setup/**"
14+
permissions:
15+
contents: read
1416
jobs:
1517
build:
1618
runs-on: ubuntu-20.04

.github/workflows/testcases.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ on:
1515
- "pygluu/**"
1616
- "tests/**"
1717
- "setup.py"
18+
permissions:
19+
contents: read
1820
jobs:
1921
build:
2022
runs-on: ubuntu-latest

.github/workflows/update_janssen_helm_chart.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ on:
66
- main
77
paths:
88
- 'charts/gluu/*'
9+
permissions:
10+
contents: read
911
jobs:
1012
createPullRequest:
1113
runs-on: ubuntu-latest
@@ -23,10 +25,10 @@ jobs:
2325
- name: Install dependencies
2426
run: |
2527
sudo apt-get update
26-
sudo python3 -m pip install --upgrade pip
27-
sudo pip3 install -r ./automation/requirements.txt
28+
sudo python3 -m pip install --upgrade pip || echo "Failed to upgrade pip"
29+
sudo pip3 install --ignore-installed -r ./automation/requirements.txt
2830
sudo apt-get update
29-
sudo apt-get install jq
31+
sudo apt-get install --ignore-installed jq
3032
3133
- name: install helm-docs
3234
run: |

.github/workflows/uploadrelease.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ on:
1212
required: false
1313
schedule:
1414
- cron: "0 0 * * *"
15+
permissions:
16+
contents: read
1517
jobs:
1618
publish:
1719
name: Publish for ${{ matrix.asset_name }}

admin-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gluu-admin-ui",
3-
"version": "5.2.0",
3+
"version": "0.0.0",
44
"description": "UI to administer the jans-sever features",
55
"keywords": [
66
"jans-server",

automation/rancher-partner-charts/questions.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,7 @@ questions:
703703
- variable: auth-server.image.tag
704704
required: true
705705
type: string
706-
default: "1.2.0-1"
706+
default: "0.0.0-nightly"
707707
description: "The Auth Server Image tag"
708708
label: Auth Server image tag
709709
group: "Images"
@@ -732,7 +732,7 @@ questions:
732732
- variable: admin-ui.image.tag
733733
required: true
734734
type: string
735-
default: "5.2.0-1"
735+
default: "0.0.0-nightly"
736736
description: "The AdminUI Image tag"
737737
label: AdminUI image tag
738738
group: "Images"
@@ -761,7 +761,7 @@ questions:
761761
- variable: auth-server-key-rotation.image.tag
762762
required: true
763763
type: string
764-
default: "1.2.0-1"
764+
default: "0.0.0-nightly"
765765
description: "The Auth Server Image tag"
766766
label: Auth Server KeyRotation image tag
767767
group: "Images"
@@ -790,7 +790,7 @@ questions:
790790
- variable: casa.image.tag
791791
required: true
792792
type: string
793-
default: "1.2.0-1"
793+
default: "0.0.0-nightly"
794794
description: "The Casa Image tag"
795795
label: Casa image tag
796796
group: "Images"
@@ -819,7 +819,7 @@ questions:
819819
- variable: config.image.tag
820820
required: true
821821
type: string
822-
default: "1.2.0-1"
822+
default: "0.0.0-nightly"
823823
description: "The Configurator Image tag"
824824
label: Configurator image tag
825825
group: "Images"
@@ -848,7 +848,7 @@ questions:
848848
- variable: config-api.image.tag
849849
required: true
850850
type: string
851-
default: "1.2.0-1"
851+
default: "0.0.0-nightly"
852852
description: "The ConfigAPI Image tag"
853853
label: ConfigAPI image tag
854854
group: "Images"
@@ -877,7 +877,7 @@ questions:
877877
- variable: fido2.image.tag
878878
required: true
879879
type: string
880-
default: "1.2.0-1"
880+
default: "0.0.0-nightly"
881881
description: "The Fido2 Image tag"
882882
label: Fido2 image tag
883883
group: "Images"
@@ -906,7 +906,7 @@ questions:
906906
- variable: persistence.image.tag
907907
required: true
908908
type: string
909-
default: "1.2.0-1"
909+
default: "0.0.0-nightly"
910910
description: "The Persistence Image tag"
911911
label: Persistence image tag
912912
group: "Images"
@@ -935,7 +935,7 @@ questions:
935935
- variable: scim.image.tag
936936
required: true
937937
type: string
938-
default: "1.2.0-1"
938+
default: "0.0.0-nightly"
939939
description: "The SCIM Image tag"
940940
label: SCIM image tag
941941
group: "Images"

charts/gluu-all-in-one/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ annotations:
33
artifacthub.io/containsSecurityUpdates: 'true'
44
artifacthub.io/images: |
55
- name: all-in-one
6-
image: ghcr.io/gluufederation/flex/flex-all-in-one:1.2.0-1
6+
image: ghcr.io/gluufederation/flex/flex-all-in-one:0.0.0-nightly
77
artifacthub.io/license: Apache-2.0
88
catalog.cattle.io/certified: partner
99
catalog.cattle.io/release-name: gluu-all-in-one
1010
catalog.cattle.io/display-name: Gluu Flex Cloud Identity and Access Management All-in-One
1111
apiVersion: v2
12-
appVersion: "5.2.0"
12+
appVersion: "0.0.0-nightly"
1313
icon: >-
1414
https://gluu.org/docs/gluu-server/favicon.ico
1515
home: https://docs.gluu.org
@@ -21,4 +21,4 @@ maintainers:
2121
email: team@gluu.org
2222
description: Gluu Access and Identity Management All-in-One Chart. This chart deploys the selected janssen microservice all in one deployment.
2323
name: gluu-all-in-one
24-
version: 5.2.0
24+
version: 0.0.0-nightly

charts/gluu-all-in-one/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gluu-all-in-one
22

3-
![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![AppVersion: 5.2.0](https://img.shields.io/badge/AppVersion-5.2.0-informational?style=flat-square)
3+
![Version: 0.0.0-nightly](https://img.shields.io/badge/Version-0.0.0--nightly-informational?style=flat-square) ![AppVersion: 0.0.0-nightly](https://img.shields.io/badge/AppVersion-0.0.0--nightly-informational?style=flat-square)
44

55
Gluu Access and Identity Management All-in-One Chart. This chart deploys the selected janssen microservice all in one deployment.
66

@@ -35,7 +35,7 @@ Kubernetes: `>=v1.22.0-0`
3535
| adminPassword | string | `"Test1234#"` | Admin password to log in to the UI. |
3636
| alb.ingress | bool | `false` | switches the service to Nodeport for ALB ingress |
3737
| auth-server | object | `{"appLoggers":{"auditStatsLogLevel":"INFO","auditStatsLogTarget":"FILE","authLogLevel":"INFO","authLogTarget":"STDOUT","enableStdoutLogPrefix":"true","httpLogLevel":"INFO","httpLogTarget":"FILE","persistenceDurationLogLevel":"INFO","persistenceDurationLogTarget":"FILE","persistenceLogLevel":"INFO","persistenceLogTarget":"FILE","scriptLogLevel":"INFO","scriptLogTarget":"FILE"},"authEncKeys":"RSA1_5 RSA-OAEP","authSigKeys":"RS256 RS384 RS512 ES256 ES384 ES512 PS256 PS384 PS512","enabled":true,"ingress":{"authServerAdditionalAnnotations":{},"authServerEnabled":true,"authServerLabels":{},"authServerProtectedRegister":false,"authServerProtectedRegisterAdditionalAnnotations":{},"authServerProtectedRegisterLabels":{},"authServerProtectedToken":false,"authServerProtectedTokenAdditionalAnnotations":{},"authServerProtectedTokenLabels":{},"authzenAdditionalAnnotations":{},"authzenConfigEnabled":true,"authzenConfigLabels":{},"deviceCodeAdditionalAnnotations":{},"deviceCodeEnabled":true,"deviceCodeLabels":{},"firebaseMessagingAdditionalAnnotations":{},"firebaseMessagingEnabled":true,"firebaseMessagingLabels":{},"lockAdditionalAnnotations":{},"lockConfigAdditionalAnnotations":{},"lockConfigEnabled":false,"lockConfigLabels":{},"lockEnabled":false,"lockLabels":{},"openidAdditionalAnnotations":{},"openidConfigEnabled":true,"openidConfigLabels":{},"u2fAdditionalAnnotations":{},"u2fConfigEnabled":true,"u2fConfigLabels":{},"uma2AdditionalAnnotations":{},"uma2ConfigEnabled":true,"uma2ConfigLabels":{},"webdiscoveryAdditionalAnnotations":{},"webdiscoveryEnabled":true,"webdiscoveryLabels":{},"webfingerAdditionalAnnotations":{},"webfingerEnabled":true,"webfingerLabels":{}},"lockEnabled":false}` | Parameters used globally across all services helm charts. |
38-
| auth-server-key-rotation | object | `{"additionalAnnotations":{},"additionalLabels":{},"customCommand":[],"customScripts":[],"dnsConfig":{},"dnsPolicy":"","enabled":true,"image":{"pullPolicy":"IfNotPresent","pullSecrets":[],"repository":"ghcr.io/janssenproject/jans/certmanager","tag":"1.2.0-1"},"initKeysLife":48,"keysLife":48,"keysPushDelay":0,"keysPushStrategy":"NEWER","keysStrategy":"NEWER","lifecycle":{},"resources":{"limits":{"cpu":"300m","memory":"300Mi"},"requests":{"cpu":"300m","memory":"300Mi"}},"usrEnvs":{"normal":{},"secret":{}},"volumeMounts":[],"volumes":[]}` | Responsible for regenerating auth-keys per x hours |
38+
| auth-server-key-rotation | object | `{"additionalAnnotations":{},"additionalLabels":{},"customCommand":[],"customScripts":[],"dnsConfig":{},"dnsPolicy":"","enabled":true,"image":{"pullPolicy":"IfNotPresent","pullSecrets":[],"repository":"ghcr.io/janssenproject/jans/certmanager","tag":"0.0.0-nightly"},"initKeysLife":48,"keysLife":48,"keysPushDelay":0,"keysPushStrategy":"NEWER","keysStrategy":"NEWER","lifecycle":{},"resources":{"limits":{"cpu":"300m","memory":"300Mi"},"requests":{"cpu":"300m","memory":"300Mi"}},"usrEnvs":{"normal":{},"secret":{}},"volumeMounts":[],"volumes":[]}` | Responsible for regenerating auth-keys per x hours |
3939
| auth-server-key-rotation.additionalAnnotations | object | `{}` | Additional annotations that will be added across the gateway in the format of {cert-manager.io/issuer: "letsencrypt-prod"} |
4040
| auth-server-key-rotation.additionalLabels | object | `{}` | Additional labels that will be added across the gateway in the format of {mylabel: "myapp"} |
4141
| auth-server-key-rotation.customCommand | list | `[]` | Add custom job's command. If passed, it will override the default conditional command. |
@@ -46,7 +46,7 @@ Kubernetes: `>=v1.22.0-0`
4646
| auth-server-key-rotation.image.pullPolicy | string | `"IfNotPresent"` | Image pullPolicy to use for deploying. |
4747
| auth-server-key-rotation.image.pullSecrets | list | `[]` | Image Pull Secrets |
4848
| auth-server-key-rotation.image.repository | string | `"ghcr.io/janssenproject/jans/certmanager"` | Image to use for deploying. |
49-
| auth-server-key-rotation.image.tag | string | `"1.2.0-1"` | Image tag to use for deploying. |
49+
| auth-server-key-rotation.image.tag | string | `"0.0.0-nightly"` | Image tag to use for deploying. |
5050
| auth-server-key-rotation.initKeysLife | int | `48` | The initial auth server key rotation keys life in hours |
5151
| auth-server-key-rotation.keysLife | int | `48` | Auth server key rotation keys life in hours |
5252
| auth-server-key-rotation.keysPushDelay | int | `0` | Delay (in seconds) before pushing private keys to Auth server |
@@ -278,7 +278,7 @@ Kubernetes: `>=v1.22.0-0`
278278
| image.pullPolicy | string | `"IfNotPresent"` | Image pullPolicy to use for deploying. |
279279
| image.pullSecrets | list | `[]` | Image Pull Secrets |
280280
| image.repository | string | `"ghcr.io/gluufederation/flex/flex-all-in-one"` | Image to use for deploying. |
281-
| image.tag | string | `"1.2.0-1"` | Image tag to use for deploying. |
281+
| image.tag | string | `"0.0.0-nightly"` | Image tag to use for deploying. |
282282
| isFqdnRegistered | bool | `false` | Boolean flag to enable mapping lbIp to fqdn inside pods on clouds that provide static ip for load balancers. On cloud that provide only addresses to the LB this flag will enable a script to actively scan config.configmap.lbAddr and update the hosts file inside the pods automatically. |
283283
| istio.additionalAnnotations | object | `{}` | Additional annotations that will be added across the gateway in the format of {cert-manager.io/issuer: "letsencrypt-prod"} |
284284
| istio.additionalLabels | object | `{}` | Additional labels that will be added across the gateway in the format of {mylabel: "myapp"} |
@@ -287,7 +287,7 @@ Kubernetes: `>=v1.22.0-0`
287287
| istio.ingress | bool | `false` | Boolean flag that enables using istio gateway for Gluu. This assumes istio ingress is installed and hence the LB is available. |
288288
| istio.namespace | string | `"istio-system"` | The namespace istio is deployed in. The is normally istio-system. |
289289
| istio.tlsSecretName | string | `"istio-tls-certificate"` | |
290-
| kc-scheduler | object | `{"additionalAnnotations":{},"additionalLabels":{},"customCommand":[],"customScripts":[],"dnsConfig":{},"dnsPolicy":"","enabled":false,"image":{"pullPolicy":"IfNotPresent","pullSecrets":[],"repository":"ghcr.io/janssenproject/jans/kc-scheduler","tag":"1.2.0-1"},"interval":10,"lifecycle":{},"resources":{"limits":{"cpu":"300m","memory":"300Mi"},"requests":{"cpu":"300m","memory":"300Mi"}},"usrEnvs":{"normal":{},"secret":{}},"volumeMounts":[],"volumes":[]}` | Responsible for synchronizing Keycloak SAML clients |
290+
| kc-scheduler | object | `{"additionalAnnotations":{},"additionalLabels":{},"customCommand":[],"customScripts":[],"dnsConfig":{},"dnsPolicy":"","enabled":false,"image":{"pullPolicy":"IfNotPresent","pullSecrets":[],"repository":"ghcr.io/janssenproject/jans/kc-scheduler","tag":"0.0.0-nightly"},"interval":10,"lifecycle":{},"resources":{"limits":{"cpu":"300m","memory":"300Mi"},"requests":{"cpu":"300m","memory":"300Mi"}},"usrEnvs":{"normal":{},"secret":{}},"volumeMounts":[],"volumes":[]}` | Responsible for synchronizing Keycloak SAML clients |
291291
| kc-scheduler.additionalAnnotations | object | `{}` | Additional annotations that will be added across the gateway in the format of {cert-manager.io/issuer: "letsencrypt-prod"} |
292292
| kc-scheduler.additionalLabels | object | `{}` | Additional labels that will be added across the gateway in the format of {mylabel: "myapp"} |
293293
| kc-scheduler.customCommand | list | `[]` | Add custom job's command. If passed, it will override the default conditional command. |
@@ -298,7 +298,7 @@ Kubernetes: `>=v1.22.0-0`
298298
| kc-scheduler.image.pullPolicy | string | `"IfNotPresent"` | Image pullPolicy to use for deploying. |
299299
| kc-scheduler.image.pullSecrets | list | `[]` | Image Pull Secrets |
300300
| kc-scheduler.image.repository | string | `"ghcr.io/janssenproject/jans/kc-scheduler"` | Image to use for deploying. |
301-
| kc-scheduler.image.tag | string | `"1.2.0-1"` | Image tag to use for deploying. |
301+
| kc-scheduler.image.tag | string | `"0.0.0-nightly"` | Image tag to use for deploying. |
302302
| kc-scheduler.interval | int | `10` | Interval of running the scheduler (in minutes) |
303303
| kc-scheduler.resources | object | `{"limits":{"cpu":"300m","memory":"300Mi"},"requests":{"cpu":"300m","memory":"300Mi"}}` | Resource specs. |
304304
| kc-scheduler.resources.limits.cpu | string | `"300m"` | CPU limit. |

0 commit comments

Comments
 (0)