diff --git a/charts/library/common/CHANGELOG.md b/charts/library/common/CHANGELOG.md
index e3cfd8867d5..81d37aea417 100644
--- a/charts/library/common/CHANGELOG.md
+++ b/charts/library/common/CHANGELOG.md
@@ -1,6 +1,15 @@
# Changelog
+
+### [common-8.12.0](https://github.com/truecharts/apps/compare/common-8.11.0...common-8.12.0) (2022-01-12)
+
+#### Feat
+
+* add TTY, STDIN and IPFamily support ([#1700](https://github.com/truecharts/apps/issues/1700))
+
+
+
### [common-8.11.0](https://github.com/truecharts/apps/compare/common-8.10.6...common-8.11.0) (2022-01-12)
diff --git a/charts/library/common/helm-values.md b/charts/library/common/helm-values.md
index cc1994ade30..6f25bff43f4 100644
--- a/charts/library/common/helm-values.md
+++ b/charts/library/common/helm-values.md
@@ -225,6 +225,8 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"add":[],"drop":[]},"privileged":false,"readOnlyRootFilesystem":true,"runAsNonRoot":true}` | Configure the Security Context for the main container |
| service | object | See below | Configure the services for the chart here. Additional services can be added by adding a dictionary key similar to the 'main' service. |
| service.main.enabled | bool | `true` | Enables or disables the service |
+| service.main.ipFamilies | list | `[]` | The ip families that should be used. Options: IPv4, IPv6 |
+| service.main.ipFamilyPolicy | string | `"SingleStack"` | Specify the ip policy. Options: SingleStack, PreferDualStack, RequireDualStack |
| service.main.nameOverride | string | `nil` | Override the name suffix that is used for this service |
| service.main.ports | object | See below | Configure the Service port information here. Additional ports can be added by adding a dictionary key similar to the 'http' service. |
| service.main.ports.main.enabled | bool | `true` | Enables or disables the port |
@@ -242,11 +244,13 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| serviceAccount.create | bool | `false` | Specifies whether a service account should be created |
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| serviceList | list | See below | Configure additional services for the chart here. |
+| stdin | bool | `false` | Determines whether containers in a pod runs with stdin enabled. |
| termination.gracePeriodSeconds | int | `10` | Duration in seconds the pod needs to terminate gracefully -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle)] |
| termination.messagePath | string | `nil` | Configure the path at which the file to which the main container's termination message will be written. -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle-1)] |
| termination.messagePolicy | string | `nil` | Indicate how the main container's termination message should be populated. Valid options are `File` and `FallbackToLogsOnError`. -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle-1)] |
| tolerations | list | `[]` | Specify taint tolerations [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) |
| topologySpreadConstraints | list | `[]` | Defines topologySpreadConstraint rules. [[ref]](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) |
+| tty | bool | `false` | Determines whether containers in a pod runs with TTY enabled. |
| volumeClaimTemplates | list | `[]` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. |
| wireguardImage | object | See below | WireGuard specific configuration |
| wireguardImage.pullPolicy | string | `"IfNotPresent"` | Specify the WireGuard image pull policy |
diff --git a/docs/apps/common/helm-values.md b/docs/apps/common/helm-values.md
index cc1994ade30..6f25bff43f4 100644
--- a/docs/apps/common/helm-values.md
+++ b/docs/apps/common/helm-values.md
@@ -225,6 +225,8 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| securityContext | object | `{"allowPrivilegeEscalation":false,"capabilities":{"add":[],"drop":[]},"privileged":false,"readOnlyRootFilesystem":true,"runAsNonRoot":true}` | Configure the Security Context for the main container |
| service | object | See below | Configure the services for the chart here. Additional services can be added by adding a dictionary key similar to the 'main' service. |
| service.main.enabled | bool | `true` | Enables or disables the service |
+| service.main.ipFamilies | list | `[]` | The ip families that should be used. Options: IPv4, IPv6 |
+| service.main.ipFamilyPolicy | string | `"SingleStack"` | Specify the ip policy. Options: SingleStack, PreferDualStack, RequireDualStack |
| service.main.nameOverride | string | `nil` | Override the name suffix that is used for this service |
| service.main.ports | object | See below | Configure the Service port information here. Additional ports can be added by adding a dictionary key similar to the 'http' service. |
| service.main.ports.main.enabled | bool | `true` | Enables or disables the port |
@@ -242,11 +244,13 @@ This chart is used by a lot of our Apps to provide sane defaults and logic.
| serviceAccount.create | bool | `false` | Specifies whether a service account should be created |
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| serviceList | list | See below | Configure additional services for the chart here. |
+| stdin | bool | `false` | Determines whether containers in a pod runs with stdin enabled. |
| termination.gracePeriodSeconds | int | `10` | Duration in seconds the pod needs to terminate gracefully -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle)] |
| termination.messagePath | string | `nil` | Configure the path at which the file to which the main container's termination message will be written. -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle-1)] |
| termination.messagePolicy | string | `nil` | Indicate how the main container's termination message should be populated. Valid options are `File` and `FallbackToLogsOnError`. -- [[ref](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#lifecycle-1)] |
| tolerations | list | `[]` | Specify taint tolerations [[ref]](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) |
| topologySpreadConstraints | list | `[]` | Defines topologySpreadConstraint rules. [[ref]](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/) |
+| tty | bool | `false` | Determines whether containers in a pod runs with TTY enabled. |
| volumeClaimTemplates | list | `[]` | Used in conjunction with `controller.type: statefulset` to create individual disks for each instance. |
| wireguardImage | object | See below | WireGuard specific configuration |
| wireguardImage.pullPolicy | string | `"IfNotPresent"` | Specify the WireGuard image pull policy |
diff --git a/docs/index.yaml b/docs/index.yaml
index c2f84c41c77..3fd52f30fd6 100644
--- a/docs/index.yaml
+++ b/docs/index.yaml
@@ -4254,6 +4254,27 @@ entries:
- https://github.com/truecharts/apps/releases/download/collabora-online-9.0.20/collabora-online-9.0.20.tgz
version: 9.0.20
common:
+ - apiVersion: v2
+ appVersion: latest
+ created: "2022-01-12T19:28:15.263420258Z"
+ description: Function library for TrueCharts
+ digest: a4bb926f90d0b59e779230bd4768080790b018343427a70edd0c10c06a6ffd05
+ home: https://github.com/truecharts/apps/tree/master/charts/common
+ icon: https://avatars.githubusercontent.com/u/76400755
+ keywords:
+ - truecharts
+ - library-chart
+ - common
+ kubeVersion: '>=1.16.0-0'
+ maintainers:
+ - email: info@truecharts.org
+ name: TrueCharts
+ url: https://truecharts.org
+ name: common
+ type: library
+ urls:
+ - https://github.com/truecharts/apps/releases/download/common-8.12.0/common-8.12.0.tgz
+ version: 8.12.0
- apiVersion: v2
appVersion: latest
created: "2022-01-12T18:25:42.584209626Z"
@@ -46655,4 +46676,4 @@ entries:
urls:
- https://github.com/truecharts/apps/releases/download/zwavejs2mqtt-9.0.24/zwavejs2mqtt-9.0.24.tgz
version: 9.0.24
-generated: "2022-01-12T18:25:42.587972281Z"
+generated: "2022-01-12T19:28:15.266477779Z"