Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fs = require('fs') | |
| const path = require('path') | |
| const chalk = require('chalk') | |
| const { spawnSync } = require('child_process') | |
| const cwd = process.cwd() | |
| const messagePath = path.join(cwd, '.git', 'COMMIT_EDITMSG') | |
| const JIRA_ID = new RegExp(/ABCD-\d+/) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1.a- kubectl run | |
| kubectl get pods | |
| kubectl run first-deployment --image=nginx | |
| kubectl get pods | |
| (maybe one more time to show the state changed from container creation to Running) | |
| (copy the pod name from get pods) | |
| kubectl exec -it pod-name -- /bin/bash | |
| echo Hello nginx! > /usr/share/nginx/html/index.html | |
| apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # set up the default terminal | |
| ENV["TERM"]="linux" | |
| Vagrant.configure("2") do |config| | |
| # set the image for the vagrant box | |
| config.vm.box = "opensuse/Leap-15.2.x86_64" | |
| ## Set the image version | |
| # config.vm.box_version = "15.2.31.212" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #cloud-config | |
| package_upgrade: true | |
| packages: | |
| - nginx | |
| - nodejs | |
| - npm | |
| write_files: | |
| - owner: www-data:www-data | |
| path: /etc/nginx/sites-available/default | |
| content: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| read -r -p "Enter the Resource Group name: " resourceGroup | |
| [ -z "$resourceGroup" ] && echo "enter a resource group" && exit 1 | |
| # Variables | |
| location="eastus" | |
| osType="UbuntuLTS" | |
| vmssName="${resourceGroup}-vmss" | |
| adminName="${resourceGroup}admin" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "info": { | |
| "_postman_id": "a3392caa-14c3-4415-a1cd-42cf3492c313", | |
| "name": "httpbin", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item": [ | |
| { | |
| "name": "ip", | |
| "event": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #cloud-config | |
| package_upgrade: true | |
| packages: | |
| - nginx | |
| write_files: | |
| - owner: www-data:www-data | |
| path: /etc/nginx/sites-available/default | |
| content: | | |
| server { | |
| listen 80; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # cloud-config | |
| package_upgrade: true | |
| packages: | |
| - nginx | |
| - nodejs | |
| - npm | |
| write_files: | |
| - owner: www-data:www-data | |
| path: /etc/nginx/sites-available/default | |
| content: | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| required_providers { | |
| azurerm = { | |
| source = "hashicorp/azurerm" | |
| version = "~> 2.26" | |
| } | |
| } | |
| } | |
| provider "azurerm" { |