Showing posts with label Docker. Show all posts
Showing posts with label Docker. Show all posts

April 06, 2022

ISTIO: Istio and kind installations and Bookinfo application execution steps

What is istio:Istio addresses the challenges developers and operators face with a distributed or microservices architecture. Whether you're building from scratch or migrating existing applications to cloud native, Istio can help.Reference: https://istio.io/latest/about/service-mesh/==Install docker:https://docs.docker.com/desktop/mac/install/==Create...
Read more ...

ISTIO: View Dashboard usages

kubectl apply -f samples/addonskubectl rollout status deployment/kiali -n istio-systemKiali:Kiali is a management console for Istio service mesh. Kiali can be quickly installed as an Istio add-on, or trusted as a part of your production environment. See below for more about what Kiali offersistioctl dashboard kialihttp://localhost:20001/Reference:https://istio.io/latest/docs/tasks/observability/kiali/https://kiali.io/Open...
Read more ...

ISTIO: Cleanup resources

Cleanup the resources:Remove any kubectl port-forward processes that may be running:killall kubectlCleanup the addons tools and istio-system namespace:kubectl delete -f samples/addonsistioctl manifest generate --set profile=demo | kubectl delete --ignore-not-found=true -f -istioctl tag remove defaultkubectl delete namespace istio-systemkubectl label namespace default istio-injection-Cleanup bookinfo:samples/bookinfo/platform/kube/cleanup.shkubectl...
Read more ...

February 16, 2022

Pushing Images to artifactory or any location of docker environment

Skopeo is a tool for moving container images between different types of container storages. It allows you to copy container images between container registries like docker.io, quay.io, and your internal container registry or different types of storage on your local system.Below are the steps to push or pull images from artifactory using skopeo...
Read more ...

February 07, 2022

How to start couchdb instance in the docker container

We have different ways to connect couchdb in docker containers>>> Using docker compose:Step1:create file docker-compose.yml::version: '3'services:  couchserver:    image: couchdb    restart: always    ports:      - "5984:5984"    environment:      - COUCHDB_USER=admin      - COUCHDB_PASSWORD=admin    volumes:   ...
Read more ...

March 19, 2019

How to specify ignore rules and exceptions from these rules for files and folder, that won’t be included in the build context in Docker(.dockerignore)

The .dockerignore file is the tool. It can help you to define the Docker build context you really need. Using this file, you can specify ignore rules and exceptions from these rules for files and folder, that won’t be included in the build context and thus won’t be packed into an archive and uploaded to the Docker server. The .dockerignore file is similar to gitignore file....
Read more ...

My Favorite Site's List

#update below script more than 500 posts