mirror of
https://github.com/containers/podman.git
synced 2025-07-25 09:05:00 +08:00
119
docs/podman-generate-kube.1.md
Normal file
119
docs/podman-generate-kube.1.md
Normal file
@ -0,0 +1,119 @@
|
||||
% podman-generate Podman Man Pages
|
||||
% Brent Baude
|
||||
% December 2018
|
||||
# NAME
|
||||
podman-generate-kube - Generate Kubernetes YAML
|
||||
|
||||
# SYNOPSIS
|
||||
**podman generate kube **
|
||||
[**-h**|**--help**]
|
||||
[**-s**][**--service**]
|
||||
CONTAINER|POD
|
||||
|
||||
# DESCRIPTION
|
||||
**podman generate kube** will generate Kubernetes Pod YAML (v1 specification) from a podman container or pod. Whether
|
||||
the input is for a container or pod, Podman will always generate the specification as a Pod. The input may be in the form
|
||||
of a pod or container name or ID.
|
||||
|
||||
The **service** option can be used to generate a Service specification for the corresponding Pod ouput. In particular,
|
||||
if the object has portmap bindings, the service specification will include a NodePort declaration to expose the service. A
|
||||
random port is assigned by Podman in the specification.
|
||||
|
||||
# OPTIONS:
|
||||
|
||||
**s** **--service**
|
||||
Generate a service file for the resulting Pod YAML.
|
||||
|
||||
## Examples ##
|
||||
|
||||
Create Kubernetes Pod YAML for a container called `some-mariadb` .
|
||||
```
|
||||
$ sudo podman generate kube some-mariadb
|
||||
# Generation of Kubenetes YAML is still under development!
|
||||
#
|
||||
# Save the output of this file and use kubectl create -f to import
|
||||
# it into Kubernetes.
|
||||
#
|
||||
# Created with podman-0.11.2-dev
|
||||
apiVersion: v1
|
||||
kind: Pod
|
||||
metadata:
|
||||
creationTimestamp: 2018-12-03T19:07:59Z
|
||||
labels:
|
||||
app: some-mariadb
|
||||
name: some-mariadb-libpod
|
||||
spec:
|
||||
containers:
|
||||
- command:
|
||||
- docker-entrypoint.sh
|
||||
- mysqld
|
||||
env:
|
||||
- name: PATH
|
||||
value: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
||||
- name: TERM
|
||||
value: xterm
|
||||
- name: HOSTNAME
|
||||
- name: container
|
||||
value: podman
|
||||
- name: GOSU_VERSION
|
||||
value: "1.10"
|
||||
- name: GPG_KEYS
|
||||
value: "199369E5404BD5FC7D2FE43BCBCB082A1BB943DB \t177F4010FE56CA3336300305F1656F24C74CD1D8
|
||||
\t430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A \t4D1BB29D63D98E422B2113B19334A25F8507EFA5"
|
||||
- name: MARIADB_MAJOR
|
||||
value: "10.3"
|
||||
- name: MARIADB_VERSION
|
||||
value: 1:10.3.10+maria~bionic
|
||||
- name: MYSQL_ROOT_PASSWORD
|
||||
value: x
|
||||
image: quay.io/baude/demodb:latest
|
||||
name: some-mariadb
|
||||
ports:
|
||||
- containerPort: 3306
|
||||
hostPort: 36533
|
||||
protocol: TCP
|
||||
resources: {}
|
||||
securityContext:
|
||||
allowPrivilegeEscalation: true
|
||||
privileged: false
|
||||
readOnlyRootFilesystem: false
|
||||
tty: true
|
||||
workingDir: /
|
||||
status: {}
|
||||
```
|
||||
|
||||
Create Kubernetes service YAML for a container called `some-mariabdb`
|
||||
```
|
||||
$ sudo podman generate kube -s some-mariadb
|
||||
# Generation of Kubenetes YAML is still under development!
|
||||
#
|
||||
# Save the output of this file and use kubectl create -f to import
|
||||
# it into Kubernetes.
|
||||
#
|
||||
# Created with podman-0.11.2-dev
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
creationTimestamp: 2018-12-03T19:08:24Z
|
||||
labels:
|
||||
app: some-mariadb
|
||||
name: some-mariadb-libpod
|
||||
spec:
|
||||
ports:
|
||||
- name: "3306"
|
||||
nodePort: 30929
|
||||
port: 3306
|
||||
protocol: TCP
|
||||
targetPort: 0
|
||||
selector:
|
||||
app: some-mariadb
|
||||
type: NodePort
|
||||
status:
|
||||
loadBalancer: {}
|
||||
```
|
||||
|
||||
## SEE ALSO
|
||||
podman(1), podman-container, podman-pod
|
||||
|
||||
# HISTORY
|
||||
Decemeber 2018, Originally compiled by Brent Baude (bbaude at redhat dot com)
|
19
docs/podman-generate.1.md
Normal file
19
docs/podman-generate.1.md
Normal file
@ -0,0 +1,19 @@
|
||||
% podman-generate(1)
|
||||
|
||||
## NAME
|
||||
podman\-container - generate structured data based for a containers and pods
|
||||
|
||||
## SYNOPSIS
|
||||
**podman generate** *subcommand*
|
||||
|
||||
## DESCRIPTION
|
||||
The generate command will create structured output (like YAML) based on a container or pod.
|
||||
|
||||
## COMMANDS
|
||||
|
||||
| Command | Man Page | Description |
|
||||
| ------- | --------------------------------------------------- | ---------------------------------------------------------------------------- |
|
||||
| kube | [podman-generate-kube(1)](podman-generate-kube.1.md) | Generate Kubernetes YAML based on a pod or container
|
||||
|
||||
## SEE ALSO
|
||||
podman, podman-pod, podman-container
|
Reference in New Issue
Block a user