This patch set changes a kubernetes yaml manifest with .yaml
extension from json format to proper yaml format.
Issue-ID: AAI-890
Change-Id: I057294751747ce3022232cf87bba12c3a1b98db8
Signed-off-by: Tin Lam <tin@irrational.io>
-{
- "kind": "Service",
- "apiVersion": "v1",
- "metadata": {
- "name": "ajsc6configdemo",
- "namespace": "org-onap-aai"
- },
- "spec": {
- "selector": {
- "app": "ajsc6configdemo"
- },
- "ports": [
- {
- "protocol": "TCP",
- "port": 80,
- "targetPort": 8080
- }
- ],
- "type": "NodePort"
- }
-}
+apiVersion: v1
+kind: Service
+metadata:
+ name: ajsc6configdemo
+ namespace: org-onap-aai
+spec:
+ selector:
+ app: ajsc6configdemo
+ ports:
+ port: 80
+ protocol: TCP
+ targetPort: 8080
+ type: NodePort