fix: various minor tweaks and updates
This commit is contained in:
parent
10a69e6cff
commit
448e768d53
@ -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:
|
||||||
|
@ -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
|
||||||
|
@ -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 }}
|
||||||
|
@ -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
53
cliff.toml
Normal 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"
|
@ -45,6 +45,8 @@ fi
|
|||||||
|
|
||||||
cd $TMPDIR/repo
|
cd $TMPDIR/repo
|
||||||
|
|
||||||
|
# read
|
||||||
|
|
||||||
helm repo index .
|
helm repo index .
|
||||||
git status
|
git status
|
||||||
|
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user