Compare commits
8 Commits
postgres-c
...
home-assis
Author | SHA1 | Date | |
---|---|---|---|
8b615f4780 | |||
1f3a4d3042 | |||
7c4601835c | |||
|
401871daa1 | ||
b53ba2b073 | |||
3191e4ed53 | |||
72ea1faa67 | |||
751a1d4143 |
12
.github/renovate.json
vendored
12
.github/renovate.json
vendored
@@ -10,8 +10,9 @@
|
|||||||
"after 10am every weekday",
|
"after 10am every weekday",
|
||||||
"before 5pm every weekday"
|
"before 5pm every weekday"
|
||||||
],
|
],
|
||||||
"labels": ["outside-rule"],
|
"labels": [
|
||||||
"bumpVersion": "minor",
|
"outside-rule"
|
||||||
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "Disables for non major Renovate version",
|
"description": "Disables for non major Renovate version",
|
||||||
@@ -57,7 +58,7 @@
|
|||||||
"gitlab-packages",
|
"gitlab-packages",
|
||||||
"gitlab-releases",
|
"gitlab-releases",
|
||||||
"gitlab-tags"
|
"gitlab-tags"
|
||||||
],
|
],
|
||||||
"schedule": [
|
"schedule": [
|
||||||
"after 10am on tuesday",
|
"after 10am on tuesday",
|
||||||
"before 5pm on tuesday"
|
"before 5pm on tuesday"
|
||||||
@@ -67,8 +68,9 @@
|
|||||||
"weekly",
|
"weekly",
|
||||||
"image"
|
"image"
|
||||||
],
|
],
|
||||||
|
"bumpVersion": "minor",
|
||||||
"automerge": false,
|
"automerge": false,
|
||||||
"minimumReleaseAge": "3 days"
|
"minimumReleaseAge": "3 days"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
8
.github/workflows/lint-test.yaml
vendored
8
.github/workflows/lint-test.yaml
vendored
@@ -35,11 +35,3 @@ jobs:
|
|||||||
- name: Run chart-testing (lint)
|
- name: Run chart-testing (lint)
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
if: steps.list-changed.outputs.changed == 'true'
|
||||||
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
|
run: ct lint --target-branch ${{ github.event.repository.default_branch }}
|
||||||
|
|
||||||
- name: Create kind cluster
|
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
|
||||||
uses: helm/kind-action@v1.9.0
|
|
||||||
|
|
||||||
- name: Run chart-testing (install)
|
|
||||||
if: steps.list-changed.outputs.changed == 'true'
|
|
||||||
run: ct install --target-branch ${{ github.event.repository.default_branch }}
|
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: home-assistant
|
name: home-assistant
|
||||||
version: 0.0.12
|
version: 0.0.13
|
||||||
description: Chart for Home Assistant
|
description: Chart for Home Assistant
|
||||||
keywords:
|
keywords:
|
||||||
- home-automation
|
- home-automation
|
||||||
@@ -9,4 +9,4 @@ sources:
|
|||||||
maintainers:
|
maintainers:
|
||||||
- name: alexlebens
|
- name: alexlebens
|
||||||
icon: https://avatars.githubusercontent.com/u/13844975?s=200&v=4
|
icon: https://avatars.githubusercontent.com/u/13844975?s=200&v=4
|
||||||
appVersion: v2024.2.4
|
appVersion: v2024.2.5
|
||||||
|
@@ -3,7 +3,7 @@ deployment:
|
|||||||
strategy: Recreate
|
strategy: Recreate
|
||||||
image:
|
image:
|
||||||
repository: homeassistant/home-assistant
|
repository: homeassistant/home-assistant
|
||||||
tag: 2024.2.4
|
tag: 2024.2.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
TZ: US/Mountain
|
TZ: US/Mountain
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: postgres-cluster
|
name: postgres-cluster
|
||||||
version: 0.1.0
|
version: 0.1.1
|
||||||
description: Chart for cloudnative-pg cluster
|
description: Chart for cloudnative-pg cluster
|
||||||
keywords:
|
keywords:
|
||||||
- database
|
- database
|
||||||
|
@@ -11,7 +11,7 @@ metadata:
|
|||||||
app.kubernetes.io/part-of: {{ .Release.Name }}
|
app.kubernetes.io/part-of: {{ .Release.Name }}
|
||||||
app.kubernetes.io/managed-by: helm
|
app.kubernetes.io/managed-by: helm
|
||||||
spec:
|
spec:
|
||||||
imageName: "{{ .Values.cluster.imageRepo }}:{{ .Values.cluster.imageTag }}"
|
imageName: "{{ .Values.cluster.image.repository }}:{{ .Values.cluster.image.tag }}"
|
||||||
instances: {{ .Values.cluster.instances }}
|
instances: {{ .Values.cluster.instances }}
|
||||||
replicationSlots:
|
replicationSlots:
|
||||||
highAvailability:
|
highAvailability:
|
||||||
|
@@ -1,7 +1,8 @@
|
|||||||
cluster:
|
cluster:
|
||||||
name: cl01tl
|
name: cl01tl
|
||||||
imageName: ghcr.io/cloudnative-pg/postgresql
|
image:
|
||||||
imageTag: 16.0
|
repository: ghcr.io/cloudnative-pg/postgresql
|
||||||
|
tag: 16.0
|
||||||
instances: 2
|
instances: 2
|
||||||
parameters:
|
parameters:
|
||||||
shared_buffers: 128MB
|
shared_buffers: 128MB
|
||||||
|
Reference in New Issue
Block a user