Skip to content

Commit

Permalink
Merge pull request #37 from CloudBoltSoftware/delivery/run-locally
Browse files Browse the repository at this point in the history
[CMP-1299] Upload chart version v0.20.0
  • Loading branch information
kcampos authored Dec 30, 2023
2 parents 4361a9f + b5728d6 commit 94871d9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 35 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/actions/release-helm-chart/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ runs:
- name: Update Chart.yaml with new versions
shell: bash
run: |
yq e '.appVersion = "${ inputs.app_version }}"' -i Chart.yaml
yq e '.appVersion = "${{ inputs.app_version }}"' -i Chart.yaml
yq e '.version = "${{ inputs.chart_version }}"' -i Chart.yaml
yq e '.image.tag = "${{ inputs.image_tag }}"' -i values.yaml
Expand Down
7 changes: 2 additions & 5 deletions Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
apiVersion: v2
name: cloudbolt-collector-helm
description: A Helm chart for Kubernetes

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
Expand All @@ -11,14 +10,12 @@ description: A Helm chart for Kubernetes
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

# 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.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.0

version: v0.20.0
# 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
appVersion: "v0.20.0"
43 changes: 14 additions & 29 deletions values.yaml
Original file line number Diff line number Diff line change
@@ -1,27 +1,22 @@
# Default values for cloudbolt-collector-helm.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.

replicaCount: 1

DEBUG: ""
IMAGE_VERSION: ""
OCP_IP: ""
OCP_PORT: ""
OCP_SERVICENAME: ""
OCP_ENABLE_SSL_VERIFICATION: ""
INGESTION_API_URL: ""

image:
repository: cloudboltsoftware/cloudbolt-collector
pullPolicy: Always
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"

tag: "v0.20.0"
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""

serviceAccount:
# Specifies whether a service account should be created
create: true
Expand All @@ -32,40 +27,34 @@ serviceAccount:
# The name of the service account to use.
# If not set and create is true, a name is generated using the fullname template
name: ""

podAnnotations: {}
podLabels: {}

podSecurityContext:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
seccompProfile:
type: "RuntimeDefault"

securityContext:
allowPrivilegeEscalation: false
capabilities:
drop: ["ALL"]
runAsNonRoot: true
seccompProfile:
type: "RuntimeDefault"

service:
type: ClusterIP
port: 8000

liveness:
initialDelaySeconds: 300
failureThreshold: 3
periodSeconds: 300

ingress:
enabled: false
className: ""
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
Expand All @@ -75,26 +64,24 @@ ingress:
# - secretName: chart-example-tls
# hosts:
# - chart-example.local

resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi

autoscaling:
enabled: false
minReplicas: 1
maxReplicas: 100
targetCPUUtilizationPercentage: 80
# targetMemoryUtilizationPercentage: 80

# Additional volumes on the output Deployment definition.
volumes: []
# - name: foo
Expand All @@ -109,7 +96,5 @@ volumeMounts: []
# readOnly: true

nodeSelector: {}

tolerations: []

affinity: {}
affinity: {}

0 comments on commit 94871d9

Please sign in to comment.