Skip to content

Commit

Permalink
Update repo and charts directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Auto commit committed Feb 22, 2024
1 parent 3230ca2 commit d67c6bb
Show file tree
Hide file tree
Showing 24 changed files with 193 additions and 128 deletions.
4 changes: 2 additions & 2 deletions charts/roundcube/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.3
version: 0.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.6.2"
appVersion: "1.6.6"
6 changes: 6 additions & 0 deletions charts/roundcube/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@ spec:
- name: ROUNDCUBEMAIL_FORWARD_AUTH
value: "1"
{{ end }}
{{- if .Values.memcached.enabled }}
- name: ROUNDCUBEMAIL_MEMCACHED_SESSION
value: "1"
- name: ROUNDCUBEMAIL_MEMCACHED_HOST
value: "{{ include "roundcube.fullname" . }}-memcached"
{{- end}}
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
Expand Down
38 changes: 38 additions & 0 deletions charts/roundcube/templates/memcached.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{{- if .Values.memcached.enabled }}
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ include "roundcube.fullname" . }}-memcached
labels:
{{- include "roundcube.labels" . | nindent 4 }}
spec:
replicas: 1
selector:
matchLabels:
{{- include "roundcube.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "roundcube.selectorLabels" . | nindent 8 }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.memcached.image.repository }}:{{ .Values.memcached.image.tag }}"
imagePullPolicy: {{ .Values.memcached.image.pullPolicy }}
resources:
{{- toYaml .Values.memcached.resources | nindent 12 }}
---
# templates/service.yaml
apiVersion: v1
kind: Service
metadata:
name: {{ include "roundcube.fullname" . }}-memcached
labels:
{{- include "roundcube.labels" . | nindent 4 }}
spec:
type: {{ .Values.memcached.service.type }}
ports:
- port: {{ .Values.memcached.service.port }}
targetPort: {{ .Values.memcached.service.port }}
selector:
{{- include "roundcube.selectorLabels" . | nindent 4 }}
{{- end }}
13 changes: 12 additions & 1 deletion charts/roundcube/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,22 @@ roundcube:

replicaCount: 1

memcached:
enabled: fale
image:
repository: memcached
tag: "1.6.23"
pullPolicy: IfNotPresent
service:
port: 11211
type: ClusterIP
resources: {}

image:
repository: highcanfly/roundcubemail
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: "latest"
tag: "1.6.6"

imagePullSecrets: []
nameOverride: ""
Expand Down
Binary file modified repo/cert-manager-webhook-oci-1.3.1.tgz
Binary file not shown.
Binary file modified repo/cloudflared-0.1.0.tgz
Binary file not shown.
Binary file modified repo/crontab-ui-1.0.0.tgz
Binary file not shown.
Binary file modified repo/dolidock-0.10.4.tgz
Binary file not shown.
Binary file modified repo/easyappointments-0.2.0.tgz
Binary file not shown.
Binary file modified repo/flex-smtpd-0.1.6.tgz
Binary file not shown.
Binary file modified repo/gitea-1.0.2.tgz
Binary file not shown.
Binary file modified repo/hcf-coder-0.3.0.tgz
Binary file not shown.
Binary file modified repo/hcfmailer-1.0.0.tgz
Binary file not shown.
Binary file modified repo/hcfmailerplus-0.2.0.tgz
Binary file not shown.
Binary file modified repo/hcfschedule-0.1.0.tgz
Binary file not shown.
Binary file modified repo/helm-dashboard-0.1.9.tgz
Binary file not shown.
8 changes: 4 additions & 4 deletions repo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -264,10 +264,10 @@ <h2>Charts</h2>
<li>
<p>
roundcube
(<a href="https://helm-repo.highcanfly.club/roundcube-0.1.3.tgz" title="https://helm-repo.highcanfly.club/roundcube-0.1.3.tgz">
0.1.3
(<a href="https://helm-repo.highcanfly.club/roundcube-0.2.0.tgz" title="https://helm-repo.highcanfly.club/roundcube-0.2.0.tgz">
0.2.0
@
1.6.2
1.6.6
</a>)
</p>
<p>
Expand Down Expand Up @@ -305,6 +305,6 @@ <h2>Charts</h2>

</ul>
</section>
<time datetime="2024-02-08T16:27:18" pubdate id="generated">Thu Feb 8 2024 04:27:18PM UTC&#43;00:00</time>
<time datetime="2024-02-22T14:32:23" pubdate id="generated">Thu Feb 22 2024 02:32:23PM UTC&#43;00:00</time>
</body>
</html>
Loading

0 comments on commit d67c6bb

Please sign in to comment.