Skip to content

Commit

Permalink
Add helm chart and accompanying docker image files.
Browse files Browse the repository at this point in the history
  • Loading branch information
lots0logs committed May 18, 2020
1 parent dd4b16e commit d4ca0cc
Show file tree
Hide file tree
Showing 18 changed files with 122 additions and 2,368 deletions.
22 changes: 5 additions & 17 deletions charts/cloud-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
apiVersion: v2
appVersion: 0.0.1
description: Web publishing platform for building blogs and websites.
engine: gotpl
home: http://www.wordpress.com/
description: Elegant Themes Cloud Server
icon: https://bitnami.com/assets/stacks/wordpress/img/wordpress-stack-220x234.png
keywords:
- wordpress
- cms
- blog
- http
- web
- application
- php
maintainers:
- email: containers@bitnami.com
name: Bitnami
name: wordpress
sources:
- https://github.com/bitnami/bitnami-docker-wordpress
version: 0.0.1
- email: dustin@elegantthemes.com
name: Elegant Themes
name: cloud-server
version: 0.0.2
449 changes: 0 additions & 449 deletions charts/cloud-server/README.md

This file was deleted.

63 changes: 0 additions & 63 deletions charts/cloud-server/templates/NOTES.txt

This file was deleted.

243 changes: 0 additions & 243 deletions charts/cloud-server/templates/_helpers.tpl

This file was deleted.

51 changes: 51 additions & 0 deletions charts/cloud-server/templates/cloud-server.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# Cloud Server Service
apiVersion: v1
kind: Service
metadata:
name: cloud-server
namespace: cloud-server
spec:
selector:
app: cloud-server
ports:
- port: 9000
targetPort: 9000
name: fastcgi
---

apiVersion: apps/v1
kind: Deployment
metadata:
name: cloud-server
namespace: cloud-server
labels:
app: cloud-server
spec:
replicas: 3
selector:
matchLabels:
app: cloud-server
template:
metadata:
labels:
app: cloud-server
spec:
containers:
- name: cloud-server
image: elegantthemes/cloud-server:{{ .Chart.appVersion }}
ports:
- name: fastcgi
containerPort: 9000
resources:
requests:
cpu: 100m
memory: 100Mi
limits:
cpu: 1000m
memory: 600Mi
volumeMounts:
- name: workspace
mountPath: /workspace
volumes:
- name: workspace
emptyDir: {}
Loading

0 comments on commit d4ca0cc

Please sign in to comment.