Kubernetes: Difference between revisions

From Skytech
Jump to navigation Jump to search
(Replaced content with "Category:Linux = How to access Pods externally = * http://alesnosek.com/blog/2017/02/14/accessing-kubernetes-pods-from-outside-of-the-cluster/")
No edit summary
Line 3: Line 3:
= How to access Pods externally =
= How to access Pods externally =
* http://alesnosek.com/blog/2017/02/14/accessing-kubernetes-pods-from-outside-of-the-cluster/
* http://alesnosek.com/blog/2017/02/14/accessing-kubernetes-pods-from-outside-of-the-cluster/

= RBD inside kubernetes =
* https://github.com/kubernetes/examples/tree/master/staging/volumes/rbd

Spent some time toying around with it but couldn't get it to work - it is a must to add the secret as described here: https://github.com/kubernetes/examples/tree/master/staging/volumes/rbd#use-ceph-authentication-secret and also add that part to the manifest:
<pre>
...
user: admin
keyring: /etc/ceph/ceph.client.admin.keyring
secretRef:
name: ceph-secret
...
</pre>
Link to example rbd manifest: https://github.com/kubernetes/examples/blob/master/staging/volumes/rbd/rbd.yaml

Revision as of 17:17, 8 July 2018


How to access Pods externally

RBD inside kubernetes

Spent some time toying around with it but couldn't get it to work - it is a must to add the secret as described here: https://github.com/kubernetes/examples/tree/master/staging/volumes/rbd#use-ceph-authentication-secret and also add that part to the manifest:

...
            user: admin
            keyring: /etc/ceph/ceph.client.admin.keyring
            secretRef:
              name: ceph-secret
...

Link to example rbd manifest: https://github.com/kubernetes/examples/blob/master/staging/volumes/rbd/rbd.yaml