Skip to content

Commit

Permalink
ClamAV - Update yml format of specifying the Average utilization targ…
Browse files Browse the repository at this point in the history
…et inside hpa.yaml. InfluxDB - Docs change (#56)

* InfluxDB docs updates

* ClamAV - update yml format of specifying the Average utilization target inside hpa.yaml
  • Loading branch information
SecaraR authored Aug 18, 2023
1 parent 0950a55 commit dfcdd61
Show file tree
Hide file tree
Showing 7 changed files with 48 additions and 13 deletions.
6 changes: 6 additions & 0 deletions charts/clamav/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Deprecated
### Removed -->

## v0.10.0 - 2023-08-18

### Changed

- Update yml format of specifying the Average utilization target inside hpa.yaml

## v0.9.0 - 2023-07-19

### Changed
Expand Down
4 changes: 3 additions & 1 deletion charts/clamav/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: clamav
description: Helm chart for ClamAV.
type: application
version: 0.9.0
version: 0.10.0
appVersion: 0.105.2
keywords:
- clamav
Expand All @@ -15,5 +15,7 @@ sources:
- https://hub.docker.com/r/clamav/clamav
- https://github.com/proagrica/helm-charts/
maintainers:
- name: wiseman13
email: [email protected]
- name: secarar
email: [email protected]
2 changes: 1 addition & 1 deletion charts/clamav/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ClamAV

![Version: 0.9.0](https://img.shields.io/badge/Version-0.9.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.105.2](https://img.shields.io/badge/AppVersion-0.105.2-informational?style=flat-square)
![Version: 0.10.0](https://img.shields.io/badge/Version-0.10.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.105.2](https://img.shields.io/badge/AppVersion-0.105.2-informational?style=flat-square)

[ClamAV](https://www.clamav.net/) is an open source antivirus engine for detecting trojans, viruses, malware & other malicious threats.

Expand Down
8 changes: 6 additions & 2 deletions charts/clamav/templates/hpa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ spec:
- type: Resource
resource:
name: cpu
targetAverageUtilization: {{ . }}
target:
type: Utilization
averageUtilization: {{ . }}
{{- end }}
{{- with .Values.autoscaling.targetMemoryUtilizationPercentage }}
- type: Resource
resource:
name: memory
targetAverageUtilization: {{ . }}
target:
type: Utilization
averageUtilization: {{ . }}
{{- end }}
{{- end }}
25 changes: 25 additions & 0 deletions charts/influxdb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# ClamAV Changelog

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).

<!-- ## [UNRELEASED]
### Added
### Changed
### Deprecated
### Removed -->

## v5.0.0 - 2023-08-18

### Changed

- Adding change log
- Maintainers list update

## v4.12.0 - 2023-02-01

### Added

- Initial release
14 changes: 5 additions & 9 deletions charts/influxdb/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: influxdb
version: 4.12.0
version: 5.0.0
appVersion: 1.8.10
description: Scalable datastore for metrics, events, and real-time analytics.
keywords:
Expand All @@ -12,12 +12,8 @@ home: https://www.influxdata.com/time-series-platform/influxdb/
sources:
- https://github.com/influxdata/influxdb
maintainers:
- name: rawkode
email: [email protected]
- name: gitirabassi
email: [email protected]
- name: aisuko
email: [email protected]
- name: naseemkullah
email: [email protected]
- name: wiseman13
email: [email protected]
- name: secarar
email: [email protected]
engine: gotpl
2 changes: 2 additions & 0 deletions charts/influxdb/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# InfluxDB Helm chart

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

[InfluxDB](https://github.com/influxdata/influxdb) is an open source time series database with no external dependencies. It's useful for recording metrics, events, and performing analytics.

The InfluxDB Helm chart uses the [Helm](https://helm.sh) package manager to bootstrap an InfluxDB StatefulSet and service on a [Kubernetes](http://kubernetes.io) cluster.
Expand Down

0 comments on commit dfcdd61

Please sign in to comment.