package main
import "fmt"
func main() {
// Type-1 Declaration
i := 42
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
######################################## | |
[root@localhost ~]# cat pv-mysql.yml | |
apiVersion: v1 | |
kind: PersistentVolume | |
metadata: | |
name: mysql-volume | |
spec: | |
capacity: | |
storage: 2Gi | |
accessModes: |
First one found from of
- Contents of
$ANSIBLE_CONFIG
./ansible.cfg
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
--- | |
- hosts: all | |
remote_user: mshaik | |
become: true | |
become_method: sudo | |
become_user: root | |
tasks: | |
- name: current task is running on {{ ansible_fqdn }} and its play1 | |
command: hostname -f |