Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cluttrdev committed Feb 25, 2024
1 parent 687536e commit e5e8943
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.7.0] - 2024-02-25

## Added

- gRPC client metrics

## Changed

- Switch to unary grpc calls

## [0.6.3] - 2024-02-20

### Fixed
Expand Down Expand Up @@ -169,7 +179,8 @@ Initial release.

<!-- Links -->

[Unreleased]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.6.3...HEAD
[Unreleased]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.7.0...HEAD
[0.7.0]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.6.3...v0.7.0
[0.6.3]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.6.2...v0.6.3
[0.6.2]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.6.1...v0.6.2
[0.6.1]: https://github.com/cluttrdev/gitlab-exporter/compare/v0.6.0...v0.6.1
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/gitlab-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ name: gitlab-exporter
description: An exporter for GitLab analytics data.
type: application

version: 1.2.4
appVersion: "v0.6.3"
version: 1.3.0
appVersion: "v0.7.0"

5 changes: 3 additions & 2 deletions deploy/helm/gitlab-exporter/templates/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ spec:
serviceAccountName: {{ include "gitlab-exporter.serviceAccountName" . }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
restartPolicy: Never
containers:
- name: {{ .Chart.Name }}
securityContext:
Expand All @@ -37,8 +38,8 @@ spec:
mountPath: /etc/gitlab-exporter/
ports:
- name: http
{{- $serverConfig := .Values.config.server | default dict }}
containerPort: {{ $serverConfig.port | default "8080" }}
{{- $httpConfig := .Values.config.http | default dict }}
containerPort: {{ $httpConfig.port | default "9100" | quote }}
protocol: TCP
livenessProbe:
httpGet:
Expand Down
1 change: 1 addition & 0 deletions deploy/helm/gitlab-exporter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ image:
pullPolicy: Always

podAnnotations: {}
podLabels: {}

podSecurityContext:
seccompProfile:
Expand Down

0 comments on commit e5e8943

Please sign in to comment.