Skip to content

Commit

Permalink
Merge pull request #3 from kool-dev/rabbitmq
Browse files Browse the repository at this point in the history
rabbitmq 1.0.0
  • Loading branch information
fabriciojs authored Oct 6, 2020
2 parents da1d5d4 + 9476136 commit ce9fc21
Show file tree
Hide file tree
Showing 5 changed files with 115 additions and 0 deletions.
23 changes: 23 additions & 0 deletions charts/rabbitmq/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
8 changes: 8 additions & 0 deletions charts/rabbitmq/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: v2
name: rabbitmq
description: RabbitMQ helm chart
version: 1.0.0
dependencies:
- name: generic
version: 1.2.1
repository: https://charts.kool.dev
20 changes: 20 additions & 0 deletions charts/rabbitmq/templates/NOTES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{{- if .Values.generic.ingresses }}
Ingresses:
{{- range $ingress := .Values.generic.ingresses }}
{{- range $host := .hosts }}
{{- range .paths }}
http{{ if $ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
{{- end }}
{{- end }}
{{- end }}
{{- else if .Values.generic.services }}
Services:
{{- $fullName := include "rabbitmq.fullname" . -}}
{{- range $service := .Values.generic.services }}
{{- if .fullName }}
{{ .fullName }}
{{- else }}
{{ $fullName }}-{{ .name | default "default" }}:{{ .port }}
{{- end }}
{{- end }}
{{- end }}
25 changes: 25 additions & 0 deletions charts/rabbitmq/templates/_helpers.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{{/* vim: set filetype=mustache: */}}
{{/*
Expand the name of the chart.
*/}}
{{- define "rabbitmq.name" -}}
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
{{- end }}

{{/*
Create a default fully qualified app name.
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
If release name contains chart name it will be used as a full name.
*/}}
{{- define "rabbitmq.fullname" -}}
{{- if .Values.fullnameOverride }}
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- $name := default .Chart.Name .Values.nameOverride }}
{{- if contains $name .Release.Name }}
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
{{- else }}
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
{{- end }}
{{- end }}
{{- end }}
39 changes: 39 additions & 0 deletions charts/rabbitmq/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
generic:
nameOverride: rabbitmq
# strategy:
# type: Recreate

containers:
default:
image:
repository: rabbitmq
pullPolicy: Always
tag: 3-management-alpine
ports:
- containerPort: 5672
livenessProbe:
tcpSocket:
port: 5672
env:
- name: RABBITMQ_DEFAULT_USER
value: user
- name: RABBITMQ_DEFAULT_PASS
value: pass
# volumeMounts:
# - name: default
# mountPath: /var/lib/rabbitmq
# subPath: rabbitmq

# storages:
# - accessModes:
# - ReadWriteOnce
# size: 1Gi

# volumes:
# - persistentVolumeClaim:
# claimName: default

services:
default:
type: ClusterIP
port: 5672

0 comments on commit ce9fc21

Please sign in to comment.