azure-container-service

Can't contact our Azure-AKS kube - TLS handshake timeout

隐身守侯 提交于 2019-12-24 09:06:29
问题 Since last friday (9th) we can't contact our AKS-kube using 'kubectl'. All commands (get nodes, version, cluster-info, apply etc) results in a 'Unable to connect to the server: net/http: TLS handshake timeout' $ curl -v hostname * Rebuilt URL to: https://HOSTNAME.hcp.westeurope.azmk8s.io:443/ * Trying NN.NN.NN.NN... * Connected to HOSTNAME.hcp.westeurope.azmk8s.io (NN.NN.NN.NN) port 443 (#0) * found 148 certificates in /etc/ssl/certs/ca-certificates.crt * found 592 certificates in /etc/ssl

How can I authenticate at Azure Container registry from an Logic App

醉酒当歌 提交于 2019-12-24 07:05:48
问题 I'm working on an application that needs to start a container whenever a message is received on a message queue. To do so I decided to use an Azure Logic App for monitoring the queue and Azure Container Instances for running the containers. The logic app is very simple, it consists of the following steps: Monitor the queue Start a container via the "Create Container Group"-connector. This works very well for public containers. However, now I want to switch to containers in my private

Mounting volume in Azure-Container-Service not working for traefik.toml and /var/run/docker.sock

泪湿孤枕 提交于 2019-12-24 00:44:11
问题 Building an CI/CD pipeline from VSTS to Azure-container-service I've ran into an issue mounting the traefik.toml and the docker.sock file. The deployment uses an SSH tunnel to create a folder /Deploy/ and copy the docker-compose.yml and traefik.toml. The files are there, the containers are spun up. Yet not handled by traefik, because it does not 'see' the containers. The traefik tutorial shows we can mount the like so in a docker-compose.yml : version: '2' services: proxy: build: context: .

Is it possible to use Azure API Management and Azure ACS (kubernetes) as frontend and backend?

天涯浪子 提交于 2019-12-23 16:28:55
问题 I would like to create a simple architecture on Azure. My high level design is very similar to the picture below (source: https://www.import.io/post/using-amazon-lambda-and-api-gateway/) I do want to access the internal services via the Azure API Management. What I can see on Microfos documentation page is that this simple and secure architecture is not mentioned as a reference: https://docs.microsoft.com/en-us/azure/container-service/container-service-kubernetes-walkthrough I have the

Difference between Azure Container Service and Web App for Containers

别等时光非礼了梦想. 提交于 2019-12-20 11:14:10
问题 What is the difference between Azure Container Service and Web App for Containers? They both seem to offer a fully managed platform on which we can deploy containers. I feel that Web App for Containers must be offering something more, but I don't see it. I've read the Azure Container Service FAQ and the Web App for Containers intro page, but the difference is not obvious to me. 回答1: Web App for Containers lets you run your custom Docker container which hosts your Web Application. By default

How to create a docker-compose.yml file with both public and private images?

送分小仙女□ 提交于 2019-12-13 03:55:37
问题 I'm trying to create a docker-compose.yml file for a specific team of developers at work. I've pushed our private images up to a private registry (Azure Container Registry) and that's ok/working :) Next I'm trying to test out how to get the dev's of this particular team to run the docker-compose file which will pull down all the images and then start them all. I've figured out that the developers will need to do this: -> docker login -u <admin username of my registry> <domain of the registry>

Pull image from and connect to the ACS Engine Kubernetes Cluster

帅比萌擦擦* 提交于 2019-12-12 05:36:38
问题 For my current environment, I have created one mater and several agents (windows containers). Here comes the questions: When ssh into the master, I tried to pull image but turned out failed with this phenomenon. May I know how can I pull the image successfully? azureuser@k8s-master-0000000-0:~$ docker pull microsoft/iis Using default tag: latest latest: Pulling from microsoft/iis 3889bb8d808b: Retrying in 1 second e29afd68a947: Downloading 4c670d580638: Download complete d9f92ede2908:

Deployment with docker-compose to Azure using CLI gives timeout when visiting agent page

梦想的初衷 提交于 2019-12-10 04:34:14
问题 I have docker-compose file: version: "3" services: app2: image: kamilwit/dockerdocker_app2 container_name: app2 build: context: ./app2 volumes: - app2data:/data environment: - LOGGING_LOG-FILES-PATH=/opt/tomcat/logs ports: - "8000:8080" app: image: kamilwit/dockerdocker_app container_name: app build: context: ./app volumes: - app1data:/data environment: - LOGGING_LOG-FILES-PATH=/opt/tomcat/logs ports: - "8001:8080" volumes: app1data: app2data: I followed the instructions from https://docs

Mount a volume while using a docker container in Azure App Service

妖精的绣舞 提交于 2019-12-09 06:05:47
问题 I've deployed a Web App on Azure and use a Docker Container from the public registry (my own image) to host my website. But users can upload pictures and data is stored in json-files on the server. Of course I want to write these files to a mounted volume outside of the container. So that I can redeploy an update version of my website without losing data. Is that possible with Web Apps? Or do I need to move on to an Ubuntu VM with Docker on Azure? What I like about the webapps is I don't have

Does NodePort work on Azure Container Service (Kubernetes)

 ̄綄美尐妖づ 提交于 2019-12-09 03:35:28
I have got the following service for Kubernetes dashboard Name: kubernetes-dashboard Namespace: kube-system Labels: k8s-app=kubernetes-dashboard kubernetes.io/cluster-service=true Annotations: kubectl.kubernetes.io/last-applied-configuration={"kind":"Service","apiVersion":"v1","metadata":{"name":"kubernetes-dashboard","namespace":"kube-system","creationTimestamp":null,"labels":{"k8s-app":"k... Selector: k8s-app=kubernetes-dashboard Type: NodePort IP: 10.0.106.144 Port: <unset> 80/TCP NodePort: <unset> 30177/TCP Endpoints: 10.244.0.11:9090 Session Affinity: None Events: <none> According to the