Skip to content

Commit

Permalink
Merge pull request #123 from warpstreamlabs/ra/fix-yaml-typo
Browse files Browse the repository at this point in the history
Fix typo in YAML
  • Loading branch information
richardartoul authored Oct 30, 2024
2 parents a8f5e48 + 949cf5c commit 3fddf0b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
6 changes: 6 additions & 0 deletions charts/warpstream-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.13.45] - 2024-10-29

### Added

- Fix typo in chart.

## [0.13.44] - 2024-10-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion charts/warpstream-agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: warpstream-agent
description: WarpStream Agent for Kubernetes.
type: application
version: 0.13.44
version: 0.13.45
appVersion: v594
icon: https://avatars.githubusercontent.com/u/132156278
home: https://docs.warpstream.com/warpstream/
Expand Down
5 changes: 2 additions & 3 deletions charts/warpstream-agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ metadata:
labels:
{{- include "warpstream-agent.labels" . | nindent 4 }}
spec:
{{- if .Values.config.playground}}
{{- if .Values.config.playground }}
replicas: 1
{{- else }}
{{- if and (not .Values.autoscaling.enabled) (.Values.replicas) }}
{{- else if and (not .Values.autoscaling.enabled) (.Values.replicas) }}
replicas: {{ .Values.replicas }}
{{- end }}
revisionHistoryLimit: {{ .Values.revisionHistoryLimit }}
Expand Down

0 comments on commit 3fddf0b

Please sign in to comment.