mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-07 20:21:20 +00:00
podex: move to contrib
This commit is contained in:
28
contrib/podex/CONTRIBUTING.md
Normal file
28
contrib/podex/CONTRIBUTING.md
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
# How to become a contributor and submit your own code
|
||||||
|
|
||||||
|
## Contributor License Agreements
|
||||||
|
|
||||||
|
We'd love to accept your patches! Before we can take them, we have to jump a couple of legal hurdles.
|
||||||
|
|
||||||
|
Please fill out either the individual or corporate Contributor License Agreement (CLA).
|
||||||
|
|
||||||
|
* If you are an individual writing original source code and you're sure you own the intellectual property, then you'll need to sign an [individual CLA](http://code.google.com/legal/individual-cla-v1.0.html).
|
||||||
|
* If you work for a company that wants to allow you to contribute your work, then you'll need to sign a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).
|
||||||
|
|
||||||
|
Follow either of the two links above to access the appropriate CLA and instructions for how to sign and return it. Once we receive it, we'll be able to accept your pull requests.
|
||||||
|
|
||||||
|
## Contributing A Patch
|
||||||
|
|
||||||
|
1. Submit an issue describing your proposed change to the repo in question.
|
||||||
|
1. The repo owner will respond to your issue promptly.
|
||||||
|
1. If your proposed change is accepted, and you haven't already done so, sign a Contributor License Agreement (see details above).
|
||||||
|
1. Fork the desired repo, develop and test your code changes.
|
||||||
|
1. Submit a pull request.
|
||||||
|
|
||||||
|
## Protocols for Collaborative Development
|
||||||
|
|
||||||
|
Please read [this doc](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/collab.md) for information on how we're running development for the project.
|
||||||
|
|
||||||
|
## Adding dependencies
|
||||||
|
|
||||||
|
If your patch depends on new packages, add that package with [`godep`](https://github.com/tools/godep). Follow the [instructions to add a dependency](https://github.com/tools/godep#add-a-dependency).
|
18
contrib/podex/MAINTAINTERS.md
Normal file
18
contrib/podex/MAINTAINTERS.md
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# Maintainers
|
||||||
|
|
||||||
|
People responsible for ports of Kubernetes to different environments. CC at least one maintainer on relevant issues and PRs.
|
||||||
|
|
||||||
|
## OS Distributions
|
||||||
|
|
||||||
|
* RedHat, Fedora: [Clayton Coleman](https://github.com/smarterclayton), [Derek Carr](https://github.com/derekwaynecarr), [Scott Collier](https://github.com/scollier)
|
||||||
|
* CoreOS: [Kelsey Hightower](https://github.com/kelseyhightower)
|
||||||
|
|
||||||
|
## Providers / Environments
|
||||||
|
|
||||||
|
* GCE: [Brendan Burns](https://github.com/brendandburns), [Joe Beda](https://github.com/jbeda), [Daniel Smith](https://github.com/lavalamp), [Tim Hockin](https://github.com/thockin)
|
||||||
|
* Azure: [Jeff Mendoza](https://github.com/jeffmendoza)
|
||||||
|
* Vsphere: [Pieter Noordhuis](https://github.com/pietern)
|
||||||
|
* Rackspace: [Ryan Richard](https://github.com/doublerr)
|
||||||
|
* Ovirt: [Federico Simoncelli](https://github.com/simon3z)
|
||||||
|
* Local: [Derek Carr](https://github.com/derekwaynecarr)
|
||||||
|
* Vagrant: [Derek Carr](https://github.com/derekwaynecarr)
|
14
contrib/podex/README.md
Normal file
14
contrib/podex/README.md
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
# podex
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
`podex` is a command line tool to bootstrap a kubernetes container manifests from docker image metadata.
|
||||||
|
|
||||||
|
Manifests can then be edited by a human to match deployment needs.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```
|
||||||
|
$ docker pull google/nodejs-hello
|
||||||
|
$ podex -yaml google/nodejs-hello > pod.yaml
|
||||||
|
$ podex -json google/nodejs-hello > pod.json
|
||||||
|
```
|
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"version": "v1beta1",
|
|
||||||
"id": "nodejs-hello-pod",
|
|
||||||
"volumes": null,
|
|
||||||
"containers": [
|
|
||||||
{
|
|
||||||
"name": "nodejs-hello",
|
|
||||||
"image": "google/nodejs-hello",
|
|
||||||
"ports": [
|
|
||||||
{
|
|
||||||
"name": "nodejs-hello-tcp-8080",
|
|
||||||
"hostPort": 80,
|
|
||||||
"containerPort": 8080,
|
|
||||||
"protocol": "TCP"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
@@ -1,11 +0,0 @@
|
|||||||
version: v1beta1
|
|
||||||
id: nodejs-hello-pod
|
|
||||||
volumes: []
|
|
||||||
containers:
|
|
||||||
- name: nodejs-hello
|
|
||||||
image: google/nodejs-hello
|
|
||||||
ports:
|
|
||||||
- name: nodejs-hello-tcp-8080
|
|
||||||
hostPort: 80
|
|
||||||
containerPort: 8080
|
|
||||||
protocol: TCP
|
|
Reference in New Issue
Block a user