mirror of
https://github.com/paralus/paralus.git
synced 2026-05-07 00:46:52 +00:00
* restructure rcloud-base as a single base controller * updated master.rest * moved sentry from internal to pkg as it is used by relay * removing unused rpc and it's dependencies * Fix usermgmt tests * Don't redefine variables in rest file Co-authored-by: Abin Simon <abin.simon@rafay.co>
30 lines
710 B
YAML
30 lines
710 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
labels:
|
|
app: web
|
|
name: rss-site
|
|
namespace: default
|
|
spec:
|
|
containers:
|
|
- image: nginx:1.17
|
|
imagePullPolicy: IfNotPresent
|
|
name: front-end
|
|
ports:
|
|
- containerPort: 80
|
|
protocol: TCP
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
- image: nickchase/rss-php-nginx:v1
|
|
imagePullPolicy: IfNotPresent
|
|
name: rss-reader
|
|
ports:
|
|
- containerPort: 88
|
|
protocol: TCP
|
|
terminationMessagePath: /dev/termination-log
|
|
terminationMessagePolicy: File
|
|
dnsPolicy: ClusterFirst
|
|
enableServiceLinks: true
|
|
restartPolicy: Always
|
|
schedulerName: default-scheduler
|
|
terminationGracePeriodSeconds: 30 |