[kubernetes-users] Re: Kubernetes 1.5.3 and 1.4.9 releases delayed

2017-02-14 Thread 'Saad Ali' via Kubernetes user discussion and Q
Rolling back the image changes (PR #41370 
) appears to have 
fixed the CI. All signals are good. I kicked off the 1.5.3 release using 
v1.5.3-beta.0.122+e8852ad4c756b4. Jess, will kick of the 1.4.9 release 
shortly. If there are no hiccups, we should have both releases in a few 
hours.

On Monday, February 13, 2017 at 3:15:53 PM UTC-8, Saad Ali wrote:
>
> Update: To unblock the releases we plan to revert the container-vm and gci 
> image updates in both the 1.4 and 1.5 branches. If that fixes the CI, then 
> we will cut the releases tomorrow.
>
> On Sunday, February 12, 2017 at 9:24:41 PM UTC-8, Saad Ali wrote:
>>
>> Link to the correct issue: 
>> https://github.com/kubernetes/kubernetes/issues/41283
>>
>> On Friday, February 10, 2017 at 6:30:27 PM UTC-8, Saad Ali wrote:
>>>
>>> *tl;dr - 1.5.3 and 1.4.9 are being postponed to early next week.*
>>>
>>> The 1.5.3 and 1.4.9 releases were scheduled to go out today, February 
>>> 10. However, an issue 
>>>  (possibly due 
>>> to image updates) is preventing us from getting a clean signal from our CI. 
>>> Therefore, we are postponing the releases until the underlying issues are 
>>> better understood and the CI is green. We are now planning to cut the 
>>> releases early next week (Monday Feb 13 or Tuesday Feb 14).
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.


[kubernetes-users] Re: client-python Beta Release

2017-02-14 Thread Davanum Srinivas
FYI, OpenStack Magnum has switched over to client-python (from the older
python-k8sclient maintained by some OpenStack folks). OpenStack Kuryr and
Kolla-Kubernetes are going to use the python client real soon now.

https://review.openstack.org/#/c/432421/
https://review.openstack.org/#/c/432409/
https://review.openstack.org/#/c/433981/

Thanks,
Dims

On Wed, Jan 25, 2017 at 8:34 PM, 'Mehdy Bohlool' via Kubernetes
developer/contributor discussion  wrote:

> Python client is now in beta. Please find more information here:
> https://github.com/kubernetes-incubator/client-python/
> releases/tag/v1.0.0b1
>
> You can reach the maintainers of this project at SIG API Machinery
> .
> If you have any problem with the client or any suggestions, please file an
> issue .
>
>
> Mehdy Bohlool |  Software Engineer |  me...@google.com |  mbohlool@github
> 
>
> --
> You received this message because you are subscribed to the Google Groups
> "Kubernetes developer/contributor discussion" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to kubernetes-dev+unsubscr...@googlegroups.com.
> To post to this group, send email to kubernetes-...@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/kubernetes-dev/CACd0WeG3O1t%3DXt7AGykyK7CcLmVYyJAB918c%
> 2BXvteqVrW3nb7A%40mail.gmail.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Davanum Srinivas :: https://twitter.com/dims

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.


[kubernetes-users] Re: How to create dynamic PVC's over an NFS PV

2017-02-14 Thread Eric Jaw
Thanks! But turns out because of requiring kernel modules, NFS can't run 
within LXC, but this would be a good solution if I get around to running 
NFS in a KVM


On Thursday, February 9, 2017 at 2:08:55 PM UTC-5, Saad Ali wrote:
>
> Eric check out https://github.com/kubernetes-incubator/nfs-provisioner
>
> On Tuesday, February 7, 2017 at 6:48:08 PM UTC-8, Eric Jaw wrote:
>>
>> The documentation mentions about PV's and PVC's, and I want to create 
>> dynamic PVC's over an NFS PV. Is that possible?
>>
>> With this PV, does it mean if a new Deployment is created with `
>> volume.beta.kubernetes.io/storage-class: ""` it will create new 
>> directories in the NFS path `/tmp` for each new PVC?
>>
>>
>> ```
>>   apiVersion: v1
>>   kind: PersistentVolume
>>   metadata:
>> name: pv0003
>> annotations:
>>   volume.beta.kubernetes.io/storage-class: ""
>>   spec:
>> capacity:
>>   storage: 1024Gi
>> accessModes:
>>   - ReadWriteOnce
>> persistentVolumeReclaimPolicy: Recycle
>> nfs:
>>   path: /tmp
>>   server: 172.17.0.2
>> ```
>>
>>
>> Reference: https://github.com/kubernetes/kubernetes.github.io/issues/2451
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.


[kubernetes-users] Can a gcePersistentDisk mounted readOnly into multiple pods also be mounted readWrite into a single pod (e.g. a k8s Job)?

2017-02-14 Thread dan . gardner

Use case:  I was hoping to run a k8s Deployment volume mounting a common PD as 
readOnly and then use a single k8s (cron)Job to manage the content of the PD.  
But alas it s not working.  Any ideas please, details below ?

GKE: Master & Node versions: 1.5.2 [not using alpha features, hence Job not 
cronJob]

1. SUCCESS: Mounting a PD xyz as gcePersistentDisk readOnly into a k8s 
deployment running on node-pool 123, all pods can mount the volume.

2. SUCCESS: Mounting a PD xyz as gcePersistentDisk readWrite into a k8s Job 
running on node-pool 456, the Pod created for the job can mount the volume.

3. FAIL:  Being able to do both #1 & #2 simultaneously.

I was hoping since I've segregated the Deployment & the Job onto different 
nodes that this would work.

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.


[kubernetes-users] Re: [Solved] Re: Examples of accessing the Jobs API via the Go client?

2017-02-14 Thread Samuel Lampa
On Monday, February 13, 2017 at 9:25:44 AM UTC+1, Samuel Lampa wrote:
>
> And now I finally found an example which put me on the right track: 
> https://github.com/gaia-docker/tugbot-kubernetes/blob/master/main.go#L107-L109
>

For the record, I found an even more to the point example, in the Pachyderm 
codebase now:

https://github.com/pachyderm/pachyderm/blob/805e63/src/server/pps/server/api_server.go#L480

// Samuel 

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.


[kubernetes-users] Dashboard: CPU/Memory Usage metrics not shown

2017-02-14 Thread mdietze
I am running a Kubernetes cluster of one master and two minions on CentOS VMs 
which was installed using the CentOS installation guide from kubernetes.io. 

I then installed the dashboard using the yaml from the git repo (using the 
rawgit link). 

The dashboard works, however I do not see the CPU/Memory Usage metrics on the 
"Workloads" and the "Conditions" section on the "Nodes" page. 

Are these features only available on GCE instances? Or am I missing something?

-- 
You received this message because you are subscribed to the Google Groups 
"Kubernetes user discussion and Q" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to kubernetes-users+unsubscr...@googlegroups.com.
To post to this group, send email to kubernetes-users@googlegroups.com.
Visit this group at https://groups.google.com/group/kubernetes-users.
For more options, visit https://groups.google.com/d/optout.