{
   "kind":"ReplicationController",
   "apiVersion":"v1",
   "metadata":{
    "name": "ducky-authd",
    "labels": {
      "name": "authd",
      "context": "ducky",
      "repo": "secondbit--authd",
      "role": "auth"
    }
   },
   "spec":{
      "replicas":1,
      "selector":{
         "context": "ducky",
         "name":"authd",
	 "repo": "secondbit--authd",
	 "role": "auth"
      },
      "template":{
         "metadata":{
            "labels":{
               "context": "ducky",
               "name":"authd",
	       "repo": "secondbit--authd",
	       "role": "auth"
            }
         },
         "spec":{
            "volumes": [
              {
                "name": "jwt-volume",
		"secret": {
                  "secretName": "jwt"
		}
	      }
	    ],
            "containers":[
               {
                  "name":"ducky-authd",
		  "image": "secondbit/authd:latest",
		  "volumeMounts": [
                    {
                      "name": "jwt-volume",
		      "readOnly": true,
		      "mountPath": "/private/kubernetes/jwt"
		    }
		  ],
                  "ports":[
                     {
                        "name": "http",
                        "containerPort":9000
		     }
                  ]
               }
            ]
         }
      }
   }
}
