Add forgotten Volume refrence

This commit is contained in:
2023-02-20 13:54:50 +00:00
parent 372b25111b
commit 70033ec15b
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -13,12 +13,12 @@ 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.0.2 version: 0.0.5
# 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.
# It is recommended to use it with quotes. # It is recommended to use it with quotes.
appVersion: "0.0.2" appVersion: "0.0.5"
keywords: keywords:
- operator - operator
- jobs - jobs
+2 -2
View File
@@ -12,8 +12,8 @@ controllerManager:
memory: 64Mi memory: 64Mi
manager: manager:
image: image:
repository: ghcr.io/lukaszraczylo/jobsmanager repository: ghcr.io/lukaszraczylo/jobs-manager-operator
tag: 0.0.2 tag: 0.0.5
resources: resources:
limits: limits:
cpu: 500m cpu: 500m
+3 -3
View File
@@ -34,9 +34,9 @@ func (cp *connPackage) compileParameters(params ...jobsmanagerv1beta1.ManagedJob
if params.Env != nil { if params.Env != nil {
cparams.Env = append(cparams.Env, params.Env...) cparams.Env = append(cparams.Env, params.Env...)
} }
// if params.Volumes != nil { if params.Volumes != nil {
// cparams.Volumes = append(cparams.Volumes, params.Volumes...) cparams.Volumes = append(cparams.Volumes, params.Volumes...)
// } }
if params.VolumeMounts != nil { if params.VolumeMounts != nil {
cparams.VolumeMounts = append(cparams.VolumeMounts, params.VolumeMounts...) cparams.VolumeMounts = append(cparams.VolumeMounts, params.VolumeMounts...)
} }