Delete kubernetes.yml file

This commit is contained in:
Tomas Pizarro
2017-12-20 09:24:00 +00:00
parent b7435b38b8
commit e522605848
2 changed files with 0 additions and 188 deletions

View File

@@ -1,6 +1,5 @@
[![CircleCI](https://circleci.com/gh/bitnami/bitnami-docker-magento/tree/master.svg?style=shield)](https://circleci.com/gh/bitnami/bitnami-docker-magento/tree/master)
[![Slack](https://img.shields.io/badge/slack-join%20chat%20%E2%86%92-e01563.svg)](http://slack.oss.bitnami.com)
[![Kubectl](https://img.shields.io/badge/kubectl-Available-green.svg)](https://raw.githubusercontent.com/bitnami/bitnami-docker-magento/master/kubernetes.yml)
# What is Magento?
@@ -17,16 +16,6 @@ $ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-magento/mas
$ docker-compose up -d
```
## Kubernetes
> **WARNING:** This is a beta configuration, currently unsupported.
Get the raw URL pointing to the `kubernetes.yml` manifest and use `kubectl` to create the resources on your Kubernetes cluster like so:
```bash
$ kubectl create -f https://raw.githubusercontent.com/bitnami/bitnami-docker-magento/master/kubernetes.yml
```
# Why use Bitnami Images?
* Bitnami closely tracks upstream source changes and promptly publishes new versions of this image using our automated systems.

View File

@@ -1,177 +0,0 @@
apiVersion: v1
items:
- apiVersion: v1
kind: Service
metadata:
annotations:
kompose.service.type: nodeport
creationTimestamp: null
labels:
io.kompose.service: magento
name: magento
spec:
ports:
- name: "80"
port: 80
targetPort: 80
- name: "443"
port: 443
targetPort: 443
selector:
io.kompose.service: magento
type: NodePort
status:
loadBalancer: {}
- apiVersion: v1
kind: Service
metadata:
creationTimestamp: null
labels:
io.kompose.service: mariadb
name: mariadb
spec:
clusterIP: None
ports:
- name: headless
port: 55555
targetPort: 0
selector:
io.kompose.service: mariadb
status:
loadBalancer: {}
- apiVersion: extensions/v1beta1
kind: Deployment
metadata:
annotations:
kompose.service.type: nodeport
creationTimestamp: null
name: magento
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: magento
spec:
containers:
- image: bitnami/magento:latest
name: magento
ports:
- containerPort: 80
- containerPort: 443
resources: {}
volumeMounts:
- mountPath: /bitnami/magento
name: magento-magento-data
- mountPath: /bitnami/apache
name: magento-apache-data
- mountPath: /bitnami/php
name: magento-php-data
restartPolicy: Always
volumes:
- name: magento-magento-data
persistentVolumeClaim:
claimName: magento-magento-data
- name: magento-apache-data
persistentVolumeClaim:
claimName: magento-apache-data
- name: magento-php-data
persistentVolumeClaim:
claimName: magento-php-data
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: magento-magento-data
name: magento-magento-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: magento-apache-data
name: magento-apache-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: magento-php-data
name: magento-php-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
- apiVersion: extensions/v1beta1
kind: Deployment
metadata:
creationTimestamp: null
name: mariadb
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: mariadb
spec:
securityContext:
runAsUser: 1001
fsGroup: 1001
containers:
- env:
- name: ALLOW_EMPTY_PASSWORD
value: "yes"
image: bitnami/mariadb:latest
name: mariadb
resources: {}
volumeMounts:
- mountPath: /bitnami/mariadb
name: magento-mariadb-data
restartPolicy: Always
volumes:
- name: magento-mariadb-data
persistentVolumeClaim:
claimName: magento-mariadb-data
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: magento-mariadb-data
name: magento-mariadb-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
kind: List
metadata: {}