├── README.md ├── example-nats-cluster.yaml ├── go_subscriber ├── Dockerfile └── client.go ├── images ├── nats-cluster-service.JPG ├── nats-cluster.JPG ├── nats-crd.JPG ├── nats-pub-deployment.JPG ├── nats-pub-logs.JPG ├── nats-pub-pod.JPG ├── nats-sub-deployment.JPG ├── nats-sub-logs.JPG └── nats-sub-pod.JPG ├── java_publisher ├── Dockerfile ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── wordpress │ └── simplydistributed │ └── nats │ └── producer │ └── NATSProducer.java ├── nats-pub-deployment.yaml └── nats-sub-deployment.yaml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/README.md -------------------------------------------------------------------------------- /example-nats-cluster.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/example-nats-cluster.yaml -------------------------------------------------------------------------------- /go_subscriber/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/go_subscriber/Dockerfile -------------------------------------------------------------------------------- /go_subscriber/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/go_subscriber/client.go -------------------------------------------------------------------------------- /images/nats-cluster-service.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-cluster-service.JPG -------------------------------------------------------------------------------- /images/nats-cluster.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-cluster.JPG -------------------------------------------------------------------------------- /images/nats-crd.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-crd.JPG -------------------------------------------------------------------------------- /images/nats-pub-deployment.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-pub-deployment.JPG -------------------------------------------------------------------------------- /images/nats-pub-logs.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-pub-logs.JPG -------------------------------------------------------------------------------- /images/nats-pub-pod.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-pub-pod.JPG -------------------------------------------------------------------------------- /images/nats-sub-deployment.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-sub-deployment.JPG -------------------------------------------------------------------------------- /images/nats-sub-logs.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-sub-logs.JPG -------------------------------------------------------------------------------- /images/nats-sub-pod.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/images/nats-sub-pod.JPG -------------------------------------------------------------------------------- /java_publisher/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/java_publisher/Dockerfile -------------------------------------------------------------------------------- /java_publisher/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/java_publisher/pom.xml -------------------------------------------------------------------------------- /java_publisher/src/main/java/com/wordpress/simplydistributed/nats/producer/NATSProducer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/java_publisher/src/main/java/com/wordpress/simplydistributed/nats/producer/NATSProducer.java -------------------------------------------------------------------------------- /nats-pub-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/nats-pub-deployment.yaml -------------------------------------------------------------------------------- /nats-sub-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhirockzz/nats-on-kubernetes-example/HEAD/nats-sub-deployment.yaml --------------------------------------------------------------------------------