Skip to content

Commit

Permalink
Release v3.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin P. Jung committed Oct 11, 2019
1 parent ea042f1 commit 4767d3d
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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).

## [3.2.1] - 2019-10-11

Thanks to [Terje Torkelsen](https://github.com/tesharp) who spotted an evil typo /
copy&paste error and provided a PR to fix it.

### Fixed

- Incorrect labels on deployed pods have been changed.

## [3.2.0] - 2019-09-17

Thanks again to [Steven Miller](https://github.com/sjmiller609) who provided input
Expand Down
2 changes: 1 addition & 1 deletion VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.0
3.2.1
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ resource "kubernetes_deployment" "this" {
}

env {
name = "TILLER_STORAGE"
name = "TILLER_STORAGE"
value = var.tiller_storage
}

Expand Down
12 changes: 6 additions & 6 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ variable "tiller_service_session_affinity" {
}

variable "tiller_sql_connection_string" {
type = string
default = ""
type = string
default = ""
description = "SQL connection string to use (only used if 'tiller_storage' is set to 'sql')."
}

variable "tiller_sql_dialect" {
type = string
default = "postgres"
type = string
default = "postgres"
description = "SQL dialect to use."
}

Expand All @@ -59,8 +59,8 @@ variable "tiller_pod_node_selector" {
}

variable "tiller_storage" {
type = string
default = "configmap"
type = string
default = "configmap"
description = "Storage driver to use. One of 'configmap', 'memory', 'sql' or 'secret'."
}

Expand Down

0 comments on commit 4767d3d

Please sign in to comment.