Delete kubernetes.yml

This commit is contained in:
tompizmor 2017-11-22 09:30:56 +01:00 committed by GitHub
parent 2d1a3f7858
commit 9529f5bb30
1 changed files with 0 additions and 174 deletions

View File

@ -1,174 +0,0 @@
apiVersion: v1
items:
- apiVersion: v1
kind: Service
metadata:
annotations:
kompose.service.type: nodeport
creationTimestamp: null
labels:
io.kompose.service: drupal
name: drupal
spec:
ports:
- name: "80"
port: 80
targetPort: 80
- name: "443"
port: 443
targetPort: 443
selector:
io.kompose.service: drupal
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: drupal
spec:
replicas: 1
strategy:
type: Recreate
template:
metadata:
creationTimestamp: null
labels:
io.kompose.service: drupal
spec:
containers:
- image: bitnami/drupal:latest
name: drupal
ports:
- containerPort: 80
- containerPort: 443
resources: {}
volumeMounts:
- mountPath: /bitnami/drupal
name: drupal-drupal-data
- mountPath: /bitnami/apache
name: drupal-apache-data
- mountPath: /bitnami/php
name: drupal-php-data
restartPolicy: Always
volumes:
- name: drupal-drupal-data
persistentVolumeClaim:
claimName: drupal-drupal-data
- name: drupal-apache-data
persistentVolumeClaim:
claimName: drupal-apache-data
- name: drupal-php-data
persistentVolumeClaim:
claimName: drupal-php-data
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: drupal-drupal-data
name: drupal-drupal-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: drupal-apache-data
name: drupal-apache-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: drupal-php-data
name: drupal-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:
containers:
- env:
- name: ALLOW_EMPTY_PASSWORD
value: "yes"
image: bitnami/mariadb:latest
name: mariadb
resources: {}
volumeMounts:
- mountPath: /bitnami/mariadb
name: drupal-mariadb-data
restartPolicy: Always
volumes:
- name: drupal-mariadb-data
persistentVolumeClaim:
claimName: drupal-mariadb-data
status: {}
- apiVersion: v1
kind: PersistentVolumeClaim
metadata:
creationTimestamp: null
labels:
io.kompose.service: drupal-mariadb-data
name: drupal-mariadb-data
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 100Mi
status: {}
kind: List
metadata: {}