Skip to content

Commit

Permalink
bump parca version, fix loadbalancerip double declaration (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlex authored Mar 8, 2023
1 parent 4162880 commit 9fe22d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/parca/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: application
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)

version: 4.7.0
version: 4.8.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
Expand Down
4 changes: 2 additions & 2 deletions charts/parca/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# parca

![Version: 4.7.0](https://img.shields.io/badge/Version-4.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.16.2](https://img.shields.io/badge/AppVersion-v0.16.2-informational?style=flat-square)
![Version: 4.8.0](https://img.shields.io/badge/Version-4.8.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.16.2](https://img.shields.io/badge/AppVersion-v0.16.2-informational?style=flat-square)

Open Source Infrastructure-wide continuous profiling

Expand Down Expand Up @@ -104,7 +104,7 @@ helm repo add parca https://parca-dev.github.io/helm-charts
| server.extraLabels | object | `{}` | additional labels for deployment |
| server.image.pullPolicy | string | `"IfNotPresent"` | Overrides pull policy for server |
| server.image.repository | string | `"ghcr.io/parca-dev/parca"` | Overrides the image repository for server |
| server.image.tag | string | `"v0.16.0"` | Overrides the image tag for server |
| server.image.tag | string | `"v0.16.2"` | Overrides the image tag for server |
| server.logLevel | string | `"info"` | logging level of parca server |
| server.nodeSelector | object | `{}` | node selector for scheduling server pod |
| server.otlpAddress | string | `""` | OpenTelemetry collector address to send traces to |
Expand Down
5 changes: 1 addition & 4 deletions charts/parca/templates/server-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@ spec:
{{- with .Values.server.service.loadBalancerIP }}
loadBalancerIP: {{ . }}
{{- end }}
{{- with .Values.server.service.loadBalancerIP }}
loadBalancerIP: {{ . }}
{{- end }}
ports:
- port: {{ .Values.server.service.port }}
targetPort: 7070
protocol: TCP
name: http
selector:
{{- include "parca.selectorLabels.server" . | nindent 4 }}
{{- end }}
{{- end }}
2 changes: 1 addition & 1 deletion charts/parca/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ server:
# -- Overrides pull policy for server
pullPolicy: IfNotPresent
# -- Overrides the image tag for server
tag: "v0.16.0"
tag: "v0.16.2"
# -- logging level of parca server
logLevel: info
# -- CORS setting
Expand Down

0 comments on commit 9fe22d1

Please sign in to comment.