Re: [kubernetes-users] nginx-ingress-controller

2018-05-18 Thread Montassar Dridi
May 18, 2018 at 3:06 PM Montassar Dridi <montass...@gmail.com > > wrote: > >> Hello >> >> I'm using google kubenretes engine. My cluster node version is 1.7. Since >> that version became unsupported by Google cloud for creating new cluster, I >> need to u

[kubernetes-users] nginx-ingress-controller

2018-05-18 Thread Montassar Dridi
Hello I'm using google kubenretes engine. My cluster node version is 1.7. Since that version became unsupported by Google cloud for creating new cluster, I need to use 1.8 or 1.9. I'm having issues implimenting my nginx-ingress-controller yaml file at the new versioned cluster but I keep

[kubernetes-users] Google kubernetes engine (Node Upgrade)

2018-02-22 Thread Montassar Dridi
I'm seeing this notification "Node version unsupported" at my Kubernetes Cluster My Current Kubernetes version of nodes is 1.7.8-gke.0 and Master version is 1.7.12-gke.1 Do I have to upgrade it immediately ? or how long do I have to wait until I do an upgrade ? I thought Kubernetes Engine

[kubernetes-users] Kubernetes Monitoring

2018-01-15 Thread Montassar Dridi
Hello I'm wondering, what's a good tool out there to monitor Kubernetes running in Google Cloud Platform. I'm using Stackdriver for the moment, but it's not giving me total insight of application and infrastructure behavior !! -- You received this message because you are subscribed to the

Re: [kubernetes-users] ERROR Does not have minimum availability

2017-12-01 Thread Montassar Dridi
wrote: > > What is the error exactly you are seeing? > Have you tried specifying a number of replicas? > > On Friday, December 1, 2017, Montassar Dridi <montass...@gmail.com > > wrote: > >> Why I keep getting this error Does not have minimum availabili

[kubernetes-users] ERROR Does not have minimum availability

2017-12-01 Thread Montassar Dridi
Why I keep getting this error Does not have minimum availability for a deployment as sample as this apiVersion: apps/v1beta1 kind: Deployment metadata: name: backup-deployment labels: app: backup spec: selector: matchLabels: app: backup template: metadata: labels:

[kubernetes-users] Running Scalable Mysql Database in Kubernetes

2017-11-07 Thread Montassar Dridi
Hello Do you Know any examples recommended for production to run a scalable mysql database in kubenretes ? I tried some galera demos but they were unstable Any suggestion would be much appreciated Thanks -- You received this message because you are subscribed to the Google Groups "Kubernetes

[kubernetes-users] kubernetes dashboard access

2017-07-18 Thread Montassar Dridi
Hello!! I used to run kubectl cluster-info then get the url to access the kubernetes dashboard, copy paste the credentials, but with version 1.6 you can not do that anymore. i'm trying kubectl proxy then when i check http://localhost:8001/ui i get this error ERR_CONNECTION_REFUSED and page

Re: [kubernetes-users] Kubernetes statefulsets galera

2017-06-06 Thread Montassar Dridi
is > happening and fix it. > > On Tuesday, June 6, 2017, Montassar Dridi <montass...@gmail.com > > wrote: > >> I'm following this example to create a synchronized database pods >> >> https://github.com/openshift/origin/tree/master/examples/statefulse

[kubernetes-users] Kubernetes statefulsets galera

2017-06-06 Thread Montassar Dridi
I'm following this example to create a synchronized database pods https://github.com/openshift/origin/tree/master/examples/statefulsets/mysql/galera and it's working fine with no issue but when I try to customize erkules/galera:basic docker image (to install some packages for example) I get

Re: [kubernetes-users] Multiple containers in one pod

2017-03-02 Thread Montassar Dridi
to work with ? On Thursday, March 2, 2017 at 9:41:18 PM UTC-5, Cole Mickens wrote: > > The two containers share a network namespace, so each application needs to > listen on a different port, they can't both bind to port 80. > > On Thu, Mar 2, 2017 at 6:36 PM, Montassar Dridi <mo

[kubernetes-users] Multiple containers in one pod

2017-03-02 Thread Montassar Dridi
I'm trying to create two containers (tomact image) inside my web pod: each one going to run a java application but I want them to share the same ip address apiVersion: extensions/v1beta1 kind: Deployment metadata: name: web-dp labels: name: web-pod version: v1 spec: template:

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-03-01 Thread Montassar Dridi
else we can do, if the app doesn't work as expected > just > > when running the container, you need to understand the app layer and see > why > > it doesn't do what you expect. > > > > > > On Wednesday, March 1, 2017, Montassar Dridi <montass...@gmail.c

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
mes don't share files that already exist, they are a > place to put files. So you can copy it from somewhere in your image > to that shared dir, or get it from git or something... > > On Tue, Feb 28, 2017 at 9:04 PM, Montassar Dridi > <montass...@gmail.com > wrote: &g

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
ainers), you lose > visibility of the war file and now see your volume. > > That will never work. > > On Wednesday, March 1, 2017, Montassar Dridi <montass...@gmail.com > > wrote: > >> I thought i did when I created the Dockerfile for the web application >>

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
ou're seeing, wouldn't it? > > On Tue, Feb 28, 2017 at 6:44 PM, Montassar Dridi > <montass...@gmail.com > wrote: > > No errors is showing in the log pods !!! > > I used the same volume structure for MYSQL database and was able to > share > > any file in v

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
a public docker image), to > understand how to use them first. Also, you may want to run just a sleep or > something and connect to the pod and see what's there, etc. > > On Tuesday, February 28, 2017, Montassar Dridi <montass...@gmail.com > > wrote: > >> I used the emptyD

Re: [kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
I used the emptyDir...get the same error On Tuesday, February 28, 2017 at 8:45:19 PM UTC-5, Montassar Dridi wrote: > > I'm using Google Cloud Platform container engine and Google persistent > disk as persistent volume > apiVersion: v1 > kind: PersistentVolumeClaim > metadata

[kubernetes-users] Kubernetes Volume mountpath

2017-02-28 Thread Montassar Dridi
Hello!! The Dockerfile for my web application image, that I deployed within Kubernetes, looks like this : FROM tomcat:8-jre8 ADD sample.war /usr/local/tomcat/webapps/ CMD ["catalina.sh", "run"] It works fine without volumes!! But when I try something like the script below, so I can include

[kubernetes-users] NGINX Ingress Controller and sessionaffinity

2017-02-22 Thread Montassar Dridi
Hello I'm using tomcat (apache) sever to run my java application within kubernetes Deployment when i used to expose the pods with a loadbalancer service and enabling sessionaffinity I could run multiple application pods with no problem. now that I'm using nginx ingress controller the website

[kubernetes-users] Kubernetes SSL

2017-02-01 Thread Montassar Dridi
Month ago I was able to set up SSL on my website, using a kubernetes nginx-ingress replication controller and an ingress, everything was working fine, but now for unknown reasons is not working for me and the website is not showing up, I tried to use a sample ingress without the ssl secret but

[kubernetes-users] Tomcat-Java application kubernetes deployment

2017-01-27 Thread Montassar Dridi
Hello I'm using Deployment to deploy my java application with a loadbalncer type service, also connected to a database pod within kubernetes too. When I have one application pod connected to the database pod everything works fine, I can login to my account in the app, all the webpages are up

[kubernetes-users] Re: Kubernetes auto-scaling

2017-01-26 Thread Montassar Dridi
e.g., when the autoscaler decides to reduce the number > of containers. The termination process is described here > <https://kubernetes.io/docs/user-guide/pods/#termination-of-pods>. > > HTH > Timo > > > On Thursday, January 26, 2017 at 1:02:45 AM UTC+1, Montassar D

[kubernetes-users] Kubernetes auto-scaling

2017-01-25 Thread Montassar Dridi
Hello!! I'm using Kubernetes Deployment for my java application and set-up the Horizontal pod autoscaling too, but when I stress test my application, I see the increase of the number of the pods and nodes but at the same there is a downtime, the website doesn't load sometimes when I refresh the

[kubernetes-users] Kubernetes Load testing

2017-01-17 Thread Montassar Dridi
I'm following this tutorial https://github.com/GoogleCloudPlatform/distributed-load-testing-using-kubernetes/issues I get this failure "SSLError(SSLError(SSLError(1, '_ssl.c:510: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed'),),)" I don't want to verify SSL

[kubernetes-users] Re: Connect Mysql Pod to my Workbench

2017-01-16 Thread Montassar Dridi
https://stackoverflow.com/questions/39910225/how-to-connect-mysql-running-on-kubernetes On Monday, January 16, 2017 at 1:26:11 PM UTC-5, Montassar Dridi wrote: > > Hello > > My database pod is working fine in kubernetes and connected to an > application pod in the same kubernetes

[kubernetes-users] Connect Mysql Pod to my Workbench

2017-01-16 Thread Montassar Dridi
Hello My database pod is working fine in kubernetes and connected to an application pod in the same kubernetes cluster, but I want also to connect it to my local machine using workbench I followed the answer here but it's not working for me ? -- You received this message because you are

[kubernetes-users] Persistent volume

2017-01-09 Thread Montassar Dridi
Hello, I have this MYSQL database pod running within a google cloud cluster, also using a persistent volume(GCEpersistentdisk) to backup my data. Is there a way to also have a AWS persistent volume(AWSElasticBlockStore) backing up the same Pod, in case something goes wrong with google cloud

Re: [kubernetes-users] Autoscale volume and pods simultaneously

2017-01-06 Thread Montassar Dridi
thank you for your help, appreciate it, I'm gonna use statefulsets On Friday, January 6, 2017 at 1:09:56 AM UTC-5, Tim Hockin wrote: > > On Thu, Jan 5, 2017 at 9:52 PM, Montassar Dridi > <montass...@gmail.com > wrote: > > > > > > On Thursday, January 5, 2017

Re: [kubernetes-users] Autoscale volume and pods simultaneously

2017-01-05 Thread Montassar Dridi
On Thursday, January 5, 2017 at 11:17:26 PM UTC-5, Tim Hockin wrote: > > On Thu, Jan 5, 2017 at 5:24 PM, Montassar Dridi > <montass...@gmail.com > wrote: > > Hi Tim, > > > > I'm trying to do something like this example > > > https://github.com/

Re: [kubernetes-users] Autoscale volume and pods simultaneously

2017-01-05 Thread Montassar Dridi
gt; black-and-white, and we've discussed if/how to implement for those > cases. But I am not going to tell you what they are until you explain > to me what you're trying to do, lest I muddy the water :) > > Tim > > > On Thu, Jan 5, 2017 at 4:12 PM, Montassar Dridi > <

Re: [kubernetes-users] Autoscale volume and pods simultaneously

2017-01-05 Thread Montassar Dridi
; > Check out dynamic volumes provisioning here > <http://blog.kubernetes.io/2016/10/dynamic-provisioning-and-storage-in-kubernetes.html> > . > > On Thu, Jan 5, 2017 at 3:07 PM, Montassar Dridi <montass...@gmail.com > > wrote: > >> Hello!! >> >>

[kubernetes-users] Autoscale volume and pods simultaneously

2017-01-05 Thread Montassar Dridi
Hello!! I'm using Kubernetes deployment with persistent volume to run my application, but when I try to add more replicas or autoscale, all the new pods try to connect to the same volume. How can I simultaneously auto create new volumes for each new pod., like statefulsets(petsets) are able to

[kubernetes-users] statefulset connection

2017-01-04 Thread Montassar Dridi
Hello I start experiencing with statefulsets, and I'm following this link on kubernetes website http://kubernetes.io/docs/tutorials/stateful-application/run-replicated-stateful-application/ How can I connect my java application to the mysql database statefulset (they are all in same