Added x509 and jwt rapps
Change-Id: Ic384fcad11dcb63fe4265d3dbcff5ea17f933cfc
diff --git a/rapps/auth.yaml b/rapps/auth.yaml
new file mode 100644
index 0000000..9b091ad
--- /dev/null
+++ b/rapps/auth.yaml
@@ -0,0 +1,46 @@
+apiVersion: apps/v1
+kind: Deployment
+metadata:
+ name: auth-code-deployment
+ namespace: default
+ labels:
+ app: auth-code
+spec:
+ selector:
+ matchLabels:
+ app: auth-code
+ template:
+ metadata:
+ labels:
+ app: auth-code
+ version: v1
+ spec:
+ containers:
+ - name: auth-code
+ image: ktimoney/rapps-rapp-auth-provider
+ imagePullPolicy: IfNotPresent
+ ports:
+ - containerPort: 9000
+ resources:
+ limits:
+ memory: 256Mi
+ cpu: "250m"
+ requests:
+ memory: 128Mi
+ cpu: "80m"
+ replicas: 1
+---
+apiVersion: v1
+kind: Service
+metadata:
+ name: auth-code
+ namespace: default
+spec:
+ selector:
+ app: auth-code
+ ports:
+ - protocol: TCP
+ port: 80
+ targetPort: 9000
+ nodePort: 31233
+ type: NodePort