Skip to content

Commit 873861a

Browse files
RenkuBotRalf Grubenmann
authored andcommitted
chore: release v1.8.0
1 parent 3c4d1fc commit 873861a

File tree

4 files changed

+45
-32
lines changed

4 files changed

+45
-32
lines changed

CHANGES.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,36 @@
1818
Changes
1919
=======
2020

21+
`1.8.0 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.7.1...v1.8.0>`__ (2022-10-14)
22+
=======================================================================================================
23+
24+
Bug Fixes
25+
~~~~~~~~~
26+
- **cli:** make file size display consistent
27+
(`#3111 <https://github.com/SwissDataScienceCenter/renku-python/issues/3111>`__)
28+
(`21b70c1 <https://github.com/SwissDataScienceCenter/renku-python/commit/21b70c1c98aaaa8942cd206842aa9d1ddd4f8cce>`__)
29+
- **core:** logging wrong chunk attribute
30+
(`#3140 <https://github.com/SwissDataScienceCenter/renku-python/issues/3140>`__)
31+
(`a187aec <https://github.com/SwissDataScienceCenter/renku-python/commit/a187aec612350ed78d626e0e54279d38d0f19655>`__)
32+
- **service:** fix working dir when cloning outside of project_clone
33+
view
34+
(`#3164 <https://github.com/SwissDataScienceCenter/renku-python/issues/3164>`__)
35+
(`9dd6a2d <https://github.com/SwissDataScienceCenter/renku-python/commit/9dd6a2dfe81908ed747d18890d233b23cec9af4f>`__)
36+
37+
Features
38+
~~~~~~~~
39+
40+
- **api:** allow querying command builder
41+
(`#3085 <https://github.com/SwissDataScienceCenter/renku-python/issues/3085>`__)
42+
(`cc7f90b <https://github.com/SwissDataScienceCenter/renku-python/commit/cc7f90b87722ae14fa7954edca4c3ecc950bf37e>`__)
43+
- **cli:** set list of custom metadata for project and dataset
44+
(`#3165 <https://github.com/SwissDataScienceCenter/renku-python/issues/3165>`__)
45+
(`739ec47 <https://github.com/SwissDataScienceCenter/renku-python/commit/739ec47739f46d60a217ff264bbe4c8418675df7>`__)
46+
- **core:** use current renku version when setting template for old
47+
projects
48+
(`#3162 <https://github.com/SwissDataScienceCenter/renku-python/issues/3162>`__)
49+
(`945e27a <https://github.com/SwissDataScienceCenter/renku-python/commit/945e27af7730b23136b537758af0c2399ef629ad>`__)
50+
2151
`1.7.1 <https://github.com/SwissDataScienceCenter/renku-python/compare/v1.7.0...v1.7.1>`__ (2022-09-06)
2252
-------------------------------------------------------------------------------------------------------
2353

helm-chart/renku-core/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ appVersion: "1.0"
33
description: A Helm chart for Kubernetes
44
name: renku-core
55
icon: https://avatars0.githubusercontent.com/u/53332360?s=400&u=a4311d22842343604ef61a8c8a1e5793209a67e9&v=4
6-
version: 1.7.1
6+
version: 1.8.0

helm-chart/renku-core/values.yaml

Lines changed: 13 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
# Default values for renku-core.
22
# This is a YAML-formatted file.
33
# Declare variables to be passed into your templates.
4-
54
replicaCount: 1
6-
75
global:
86
## Specify a secret that containes the certificate
97
## if you would like to use a custom CA. The key for the secret
@@ -15,8 +13,7 @@ global:
1513
repository: renku/certificates
1614
tag: '0.0.2'
1715
customCAs: []
18-
# - secret:
19-
16+
# - secret:
2017
## Redis configuration. This is where renku-core expects to find
2118
## a functioning redis instance and credentials to connect to it.
2219
redis:
@@ -31,63 +28,52 @@ global:
3128
renku-redis-host: "true"
3229
existingSecret: redis-secret
3330
existingSecretPasswordKey: redis-password
34-
3531
# base path - this is the reverse proxy base path
3632
apiBasePath: /api
37-
3833
cacheDirectory: /svc/cache
39-
cleanupInterval: 60 # NOTE: This needs to be a divisor of, and less than cleanupFilesTTL|cleanupProjectsTTL.
34+
cleanupInterval: 60 # NOTE: This needs to be a divisor of, and less than cleanupFilesTTL|cleanupProjectsTTL.
4035
projectCloneDepth: 1
4136
templateCloneDepth: 1
4237
maximumUploadSizeBytes: "1073741824" # 1 Gigabyte, store as string to keep Helm from converting it to scientific notation
4338
requestTimeout: 600
44-
4539
datasetsWorkerQueues: datasets.jobs,delayed.ctrl.DatasetsCreateCtrl,delayed.ctrl.DatasetsAddFileCtrl,delayed.ctrl.DatasetsRemoveCtrl,delayed.ctrl.DatasetsImportCtrl,delayed.ctrl.DatasetsEditCtrl,delayed.ctrl.DatasetsUnlinkCtrl
4640
managementWorkerQueues: cache.cleanup.files,cache.cleanup.projects,delayed.ctrl.MigrateProjectCtrl,delayed.ctrl.SetConfigCtrl
4741
cleanupFilesTTL: 1800
4842
cleanupProjectsTTL: 1800
4943
logLevel: INFO
50-
5144
# override to automatically pull LFS data on clone
5245
gitLFSSkipSmudge: 1
53-
5446
# Concurrency settings for the main service:
5547
# the default it 4 workers with 8 threads set in the Dockerfile
5648
nWorkers: 4
5749
nThreads: 8
58-
5950
# NOTE: Make sure token secret is greater or equal to 32 bytes.
6051
jwtTokenSecret: bW9menZ3cnh6cWpkcHVuZ3F5aWJycmJn
61-
6252
imagePullSecrets: []
6353
nameOverride: ""
6454
fullnameOverride: ""
65-
6655
service:
6756
type: ClusterIP
6857
port: 80
69-
7058
ingress:
7159
enabled: false
72-
7360
metrics:
7461
enabled: false
7562
image:
7663
repository: renku/rqmetrics
7764
tag: 0.0.2
7865
pullPolicy: IfNotPresent
79-
8066
resources: {}
81-
# We usually recommend not to specify default resources and to leave this as a conscious
82-
# choice for the user. This also increases chances charts run on environments with little
83-
# resources, such as Minikube. If you do want to specify resources, uncomment the following
84-
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
85-
# limits:
86-
# cpu: 100m
87-
# memory: 128Mi
88-
# requests:
89-
# cpu: 100m
90-
# memory: 128Mi
67+
# We usually recommend not to specify default resources and to leave this as a conscious
68+
# choice for the user. This also increases chances charts run on environments with little
69+
# resources, such as Minikube. If you do want to specify resources, uncomment the following
70+
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
71+
# limits:
72+
# cpu: 100m
73+
# memory: 128Mi
74+
# requests:
75+
# cpu: 100m
76+
# memory: 128Mi
9177

9278
# nodeSelector: {}
9379

@@ -101,7 +87,6 @@ sentry:
10187
dsn:
10288
environment:
10389
sampleRate: 0.2
104-
10590
# versions is the list of different deployment that support different metadata versions.
10691
versions:
10792
latest:
@@ -111,7 +96,7 @@ versions:
11196
fullnameOverride: ""
11297
image:
11398
repository: renku/renku-core
114-
tag: "v1.7.1"
99+
tag: "v1.8.0"
115100
pullPolicy: IfNotPresent
116101
v8:
117102
name: v8
@@ -122,11 +107,9 @@ versions:
122107
repository: renku/renku-core
123108
tag: "v0.16.7"
124109
pullPolicy: IfNotPresent
125-
126110
podSecurityContext:
127111
runAsUser: 1000
128112
runAsGroup: 1000
129113
fsGroup: 100
130-
131114
securityContext:
132115
allowPrivilegeEscalation: false

renku/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
except ImportError:
2525
from importlib_metadata import distribution # type: ignore
2626

27-
__version__ = "1.7.1"
27+
__version__ = "1.8.0"
2828
__template_version__ = "0.3.1"
2929
__minimum_project_version__ = "1.7.0"
3030

0 commit comments

Comments
 (0)