init
commit
bc0fb17786
@ -0,0 +1,20 @@
|
||||
MIT License
|
||||
Copyright (c) 2018 Stephen McQuay
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
||||
of the Software, and to permit persons to whom the Software is furnished to do
|
||||
so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -0,0 +1,21 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hw
|
||||
labels:
|
||||
app: hw
|
||||
spec:
|
||||
replicas: 10
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hw
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hw
|
||||
spec:
|
||||
containers:
|
||||
- image: smcquay/hw:v0.0.5
|
||||
name: hw
|
||||
ports:
|
||||
- containerPort: 8080
|
@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: hw
|
||||
spec:
|
||||
type: LoadBalancer
|
||||
selector:
|
||||
app: hw
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 8080
|
@ -0,0 +1,23 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: hwc
|
||||
labels:
|
||||
app: hwc
|
||||
spec:
|
||||
replicas: 1
|
||||
selector:
|
||||
matchLabels:
|
||||
app: hwc
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app: hwc
|
||||
spec:
|
||||
containers:
|
||||
- image: smcquay/hwc:v0.0.1
|
||||
name: hwc
|
||||
ports:
|
||||
- containerPort: 8081
|
||||
command: ["/bin/hwc"]
|
||||
args: ["hw.default.svc.cluster.local"]
|
@ -0,0 +1,11 @@
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
metadata:
|
||||
name: hwc
|
||||
spec:
|
||||
type: LoadBalancer
|
||||
selector:
|
||||
app: hwc
|
||||
ports:
|
||||
- protocol: TCP
|
||||
port: 8081
|
Loading…
Reference in New Issue