How to give access or create a account in GitHub Steps: Login to the GitHub as Admin Look for site admin at left side Click on "Invite User" Give Username and Email id Once User is created, An email will sent to the user, he can then access to the git hub. How to add a new git hub member to the repository inside a organisation Steps: Login to the GitHub as Admin Go to the Organisation and Repository inside the organisation Click on Settings tab Select the " Collaborators & Teams" tab at left side Look for the "teams" and click on the same. How to check the Git hub user permissions for a repository inside an organisation Steps: Login to the GitHub as Admin Go to the Organisation and Repository inside the organisation Click on Settings tab Select the " Collaborators & Teams" tab at left side Look for the "teams" and click on the same. Select any user Click on the " Manage a...
KUBERNETES What are containers Before we dive into Container Orchestration, let's review first what containers are. Containers are an application-centric way to deliver high-performing, scalable applications on the infrastructure of your choice. With a container image, we bundle the application along with its runtime and dependencies. We use that image to create an isolated executable environment, also known as container . We can deploy containers from a given image on the platform of our choice, such as desktops, VMs, Cloud, etc. Container Orchestration ? In Development and Quality Assurance (QA) environments, we can get away with running containers on a single host to develop and test applications. However, when we go to production, we do not have the same liberty, as we need to ensure that our applications: Are fault-tolerant Can scale, and do this on-demand Use resources optimally Can discover other applications automatically, and c...
Comments
Post a Comment