- https://computingforgeeks.com/configure-iscsi-target-and-initiator-on-centos-rhel/
- https://computingforgeeks.com/how-to-configure-iscsi-initiator-on-centos-rhel/
- https://computingforgeeks.com/install-and-configure-nfs-server-on-centos-rhel/
- https://computingforgeeks.com/configure-nfs-client-on-centos-rhel/
https://marketplace.visualstudio.com/items?itemName=ban.spellright
Launch VS Code Quick Open (Ctrl+P
), paste the following command, and press enter.
ext install ban.spellright
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
{ | |
"ignition": { | |
"version": "3.1.0" | |
}, | |
"passwd": { | |
"users": [ | |
{ | |
"groups": [ | |
"wheel", | |
"sudo" |
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
/* Note name is bold */ | |
.container .list-item.file p.filename, #file-list .container .list-item.directory p.filename { | |
font-weight: bold; | |
} | |
/* Match the file-tree with the style of the bear tag pane */ | |
body #file-tree { | |
color: #CFCFCF; | |
} |
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
user nginx nginx; | |
worker_processes 1; | |
error_log syslog:server=unix:/dev/log,nohostname warn; | |
events { | |
worker_connections 1024; | |
} | |
http { |
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
#!groovy | |
def targetSystemName = "saas-usecase-apikey" | |
def targetInstance = "3scale-saas" | |
def privateBaseURL = "http://echo-api.3scale.net" | |
def testUserKey = "azerty1234567890" | |
def developerAccountId = "[email protected]" | |
node() { | |
stage("Fetch OpenAPI") { |