Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/key-migration-utility/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then
fi

NS=key-migration-utility
CHART_VERSION=0.0.1-develop
CHART_VERSION=1.4.0

echo Creating $NS namespace
kubectl create ns $NS
Expand Down
2 changes: 1 addition & 1 deletion deploy/keymanager/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ $# -ge 1 ] ; then
fi

NS=keymanager
CHART_VERSION=0.0.1-develop
CHART_VERSION=1.4.0

echo Creating $NS namespace
kubectl create ns $NS
Expand Down
2 changes: 1 addition & 1 deletion deploy/softhsm/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if [ $# -ge 1 ] ; then
fi

NS=softhsm
CHART_VERSION=0.0.1-develop
CHART_VERSION=1.4.0

echo Create $NS namespaces
kubectl create ns $NS
Expand Down
2 changes: 1 addition & 1 deletion helm/key-migration-utility/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: key-migration-utility
description: A Helm chart to migrate keys from any keystore type to any other supported format.
type: application
version: 0.0.1-develop
version: 1.4.0
appVersion: ""
dependencies:
- name: common
Expand Down
42 changes: 2 additions & 40 deletions helm/key-migration-utility/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,27 +12,22 @@
##
commonLabels:
app.kubernetes.io/component: mosip

## Add annotations to all the deployed resources
##
commonAnnotations: {}

## Kubernetes Cluster Domain
##
clusterDomain: cluster.local

## Extra objects to deploy (value evaluated as a template)
##
extraDeploy: []

## Number of nodes
##
replicaCount: 1

image:
registry: docker.io
repository: mosipqa/keys-migrator
tag: develop
repository: mosipid/keys-migrator
tag: 1.4.0
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images
Expand All @@ -44,20 +39,17 @@ image:
##
# pullSecrets:
# - myRegistryKeySecretName

##
# existingConfigmap:

## Command and args for running the container (set to default if not set). Use array form
##
command: []
args: []

## Deployment pod host aliases
## https://kubernetes.io/docs/concepts/services-networking/add-entries-to-pod-etc-hosts-with-host-aliases/
##
hostAliases: []

## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
Expand All @@ -71,37 +63,31 @@ resources:
requests: {}
# cpu: 200m
# memory: 10Mi

additionalResources:
## Specify any JAVA_OPTS string here. These typically will be specified in conjunction with above resources
## Example: java_opts: "-Xms500M -Xmx500M"
javaOpts: ""

## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
## Clamav container already runs as 'mosip' user, so we may not need to enable this
containerSecurityContext:
enabled: false
runAsUser: mosip
runAsNonRoot: true

## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-pod
##
podSecurityContext:
enabled: false
fsGroup: 1001

## Pod affinity preset
## ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
## Allowed values: soft, hard
##
podAffinityPreset: ""

## Pod anti-affinity preset
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity
## Allowed values: soft, hard
##
podAntiAffinityPreset: soft

## Node affinity preset
## Ref: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity
## Allowed values: soft, hard
Expand All @@ -123,32 +109,26 @@ nodeAffinityPreset:
## - e2e-az2
##
values: []

## Affinity for pod assignment. Evaluated as a template.
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}

## Node labels for pod assignment. Evaluated as a template.
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}

## Tolerations for pod assignment. Evaluated as a template.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []

## Pod extra labels
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
##
podLabels: {}

## Annotations for server pods.
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}

## pods' priority.
## ref: https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
##
Expand All @@ -157,36 +137,29 @@ podAnnotations: {}
## lifecycleHooks for the container to automate configuration before or after startup.
##
lifecycleHooks: {}

## Custom Liveness probes for
##
customLivenessProbe: {}

## Custom Rediness probes
##
customReadinessProbe: {}

## "backoff" strategy - It is used when dealing with resources that are retrying or recovering from failures.
##
backoffLimit: 0

## Update strategy - only really applicable for deployments with RWO PVs attached
## If replicas = 1, an update can get "stuck", as the previous pod remains attached to the
## PV, and the "incoming" pod can never start. Changing the strategy to "Recreate" will
## terminate the single previous pod, so that the new, incoming pod can attach to the PV
##
updateStrategy:
type: RollingUpdate

## Additional environment variables to set
## Example:
## extraEnvVars:
## - name: FOO
## value: "bar"
##

extraEnvVars: []

## ConfigMap with extra environment variables that used
##
## IMPORTANT: softhsm name needs to be set if not default as mentioned below. This applies if softhsm name
Expand All @@ -195,19 +168,15 @@ extraEnvVarsCM:
- global
- config-server-share
- artifactory-share

## Secret with extra environment variables
##
extraEnvVarsSecret: []

## Extra volumes to add to the deployment
##
extraVolumes: []

## Extra volume mounts to add to the container
##
extraVolumeMounts: []

## Add init containers to the pods.
## Example:
## initContainers:
Expand All @@ -219,7 +188,6 @@ extraVolumeMounts: []
## containerPort: 1234
##
initContainers: {}

## Add sidecars to the pods.
## Example:
## sidecars:
Expand All @@ -231,7 +199,6 @@ initContainers: {}
## containerPort: 1234
##
sidecars: {}

persistence:
enabled: false
## If defined, storageClassName: <storageClass>
Expand All @@ -253,7 +220,6 @@ persistence:
existingClaim:
# Dir where config and keys are written inside container
mountDir:

## Init containers parameters:
## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section.
##
Expand Down Expand Up @@ -287,12 +253,10 @@ volumePermissions:
## cpu: 100m
## memory: 128Mi
##

## Specifies whether RBAC resources should be created
##
rbac:
create: true

## Specifies whether a ServiceAccount should be created
##
serviceAccount:
Expand All @@ -301,12 +265,10 @@ serviceAccount:
## If not set and create is true, a name is generated using the fullname template
##
name:

# migration
springConfigNameEnv:
# default or migration
activeProfileEnv:

## This param is to be set during installation.
## For Kernel: softhsm-kernel-share
## For IDA: softhsm-ida-share
Expand Down
2 changes: 1 addition & 1 deletion helm/keygen/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: keygen
description: A Helm chart to generate keys
type: application
version: 0.0.1-develop
version: 1.4.0
appVersion: ""
dependencies:
- name: common
Expand Down
Loading
Loading