fix: various minor tweaks and updates

This commit is contained in:
Stefan Reimer 2021-08-25 16:02:21 +02:00
parent 81b8e36d54
commit 018818bc33
7 changed files with 60 additions and 4 deletions

View File

@ -14,7 +14,7 @@ spec:
spec: spec:
hostNetwork: true hostNetwork: true
containers: containers:
- image: public.ecr.aws/zero-downtime/fuse-device-plugin:v1.0 - image: public.ecr.aws/zero-downtime/fuse-device-plugin:v1.0-r1
# imagePullPolicy: Always # imagePullPolicy: Always
name: fuse-device-plugin name: fuse-device-plugin
securityContext: securityContext:

View File

@ -210,7 +210,7 @@ fluentd:
flush_thread_count 1 flush_thread_count 1
flush_interval 30s flush_interval 30s
chunk_limit_size 8MB chunk_limit_size 4MB
total_limit_size 2GB total_limit_size 2GB
flush_at_shutdown true flush_at_shutdown true

View File

@ -2,7 +2,7 @@
apiVersion: networking.istio.io/v1beta1 apiVersion: networking.istio.io/v1beta1
kind: VirtualService kind: VirtualService
metadata: metadata:
name: mariadb name: {{ template "kubezero-lib.fullname" $ }}-mariadb
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
labels: labels:
{{ include "kubezero-lib.labels" . | indent 4 }} {{ include "kubezero-lib.labels" . | indent 4 }}

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: kubezero-storage name: kubezero-storage
description: KubeZero umbrella chart for all things storage, eg. openEBS description: KubeZero umbrella chart for all things storage, eg. openEBS
type: application type: application
version: 0.1.1 version: 0.1.2
home: https://kubezero.com home: https://kubezero.com
icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png icon: https://cdn.zero-downtime.net/assets/kubezero/logo-small-64.png
keywords: keywords:

53
cliff.toml Normal file
View File

@ -0,0 +1,53 @@
# configuration file for git-cliff (0.1.0)
[changelog]
# changelog header
header = """
# Changelog
All notable changes to this project will be documented in this file.\n
"""
# template for the changelog body
# https://tera.netlify.app/docs/#introduction
body = """
{% if version %}\
## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {{ commit.message | upper_first }}\
{% endfor %}
{% endfor %}\n
"""
# remove the leading and trailing whitespaces from the template
trim = true
# changelog footer
footer = """
<!-- generated by git-cliff -->
"""
[git]
# allow only conventional commits
# https://www.conventionalcommits.org
conventional_commits = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat*", group = "Features"},
{ message = "^fix*", group = "Bug Fixes"},
{ message = "^doc*", group = "Documentation"},
{ message = "^perf*", group = "Performance"},
{ message = "^refactor*", group = "Refactor"},
{ message = "^style*", group = "Styling"},
{ message = "^test*", group = "Testing"},
{ message = "^chore\\(release\\): prepare for*", skip = true},
{ message = "^chore*", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"},
]
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
tag_pattern = "v[0-9]*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"

View File

@ -45,6 +45,8 @@ fi
cd $TMPDIR/repo cd $TMPDIR/repo
# read
helm repo index . helm repo index .
git status git status

View File

@ -115,4 +115,5 @@ EOF
kubectl apply -f _job.yaml kubectl apply -f _job.yaml
kubectl wait -n kube-system --timeout 300s --for=condition=complete job/kubezero-upgrade kubectl wait -n kube-system --timeout 300s --for=condition=complete job/kubezero-upgrade
kubectl delete -f _job.yaml kubectl delete -f _job.yaml
rm -f _job.yaml
done done