Delete kubernetes.yml file
This commit is contained in:
parent
ec458d20f8
commit
699f927fc3
|
|
@ -1,6 +1,5 @@
|
|||
[](https://circleci.com/gh/bitnami/bitnami-docker-mysql/tree/master)
|
||||
[](http://slack.oss.bitnami.com)
|
||||
[](https://raw.githubusercontent.com/bitnami/bitnami-docker-mysql/master/kubernetes.yml)
|
||||
|
||||
# What is MySQL?
|
||||
|
||||
|
|
@ -21,16 +20,6 @@ $ curl -sSL https://raw.githubusercontent.com/bitnami/bitnami-docker-mysql/maste
|
|||
$ 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-mysql/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.
|
||||
|
|
|
|||
|
|
@ -1,73 +0,0 @@
|
|||
apiVersion: v1
|
||||
items:
|
||||
- apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.service.type: nodeport
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
io.kompose.service: mysql
|
||||
name: mysql
|
||||
spec:
|
||||
ports:
|
||||
- name: "3306"
|
||||
port: 3306
|
||||
targetPort: 3306
|
||||
selector:
|
||||
io.kompose.service: mysql
|
||||
type: NodePort
|
||||
status:
|
||||
loadBalancer: {}
|
||||
- apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
annotations:
|
||||
kompose.service.type: nodeport
|
||||
creationTimestamp: null
|
||||
name: mysql
|
||||
spec:
|
||||
replicas: 1
|
||||
strategy:
|
||||
type: Recreate
|
||||
template:
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
io.kompose.service: mysql
|
||||
spec:
|
||||
containers:
|
||||
- env:
|
||||
- name: ALLOW_EMPTY_PASSWORD
|
||||
value: "yes"
|
||||
image: bitnami/mysql:latest
|
||||
name: mysql
|
||||
ports:
|
||||
- containerPort: 3306
|
||||
resources: {}
|
||||
volumeMounts:
|
||||
- mountPath: /bitnami/mysql
|
||||
name: mysql-mysql-data
|
||||
restartPolicy: Always
|
||||
volumes:
|
||||
- name: mysql-mysql-data
|
||||
persistentVolumeClaim:
|
||||
claimName: mysql-mysql-data
|
||||
status: {}
|
||||
- apiVersion: v1
|
||||
kind: PersistentVolumeClaim
|
||||
metadata:
|
||||
creationTimestamp: null
|
||||
labels:
|
||||
io.kompose.service: mysql-mysql-data
|
||||
name: mysql-mysql-data
|
||||
spec:
|
||||
accessModes:
|
||||
- ReadWriteOnce
|
||||
resources:
|
||||
requests:
|
||||
storage: 100Mi
|
||||
status: {}
|
||||
kind: List
|
||||
metadata: {}
|
||||
|
||||
Loading…
Reference in New Issue