Podman on Mac M1
brew install podman
podman machine init
podman machine start
- name: Enable TCP socket in SQL Server | |
win_regedit: | |
path: HKLM:\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL13.SQLEXPRESS\MSSQLServer\SuperSocketNetLib\Tcp | |
name: Enabled | |
data: 1 | |
type: dword | |
tags: | |
- mssql |
- name: Install misc packages | |
apt: name={{item}} state=present | |
with_items: | |
- curl | |
- git | |
- zip | |
- unzip | |
- vim | |
- logrotate | |
- ufw |
[Appearance] | |
ColorScheme=86353-Oxygen | |
Font=Source Code Pro for Powerline,11,-1,5,50,0,0,0,0,0,Regular | |
UseFontLineChararacters=true | |
[General] | |
Name=nidr0x | |
Parent=FALLBACK/ | |
[Scrolling] |
# Configuration file for libinput-gestures. | |
# | |
# The default configuration file exists at /etc/libinput-gestures.conf | |
# but a user can create a personal custom configuration file at | |
# ~/.config/libinput-gestures.conf. | |
# | |
# Lines starting with '#' and blank lines are ignored. Currently | |
# "gesture" and "device" configuration keywords are supported as | |
# described below. The keyword can optionally be appended with a ":" (to | |
# maintain compatibility with original format configuration files). |
sudo bash -c 'echo -e "LANG=en_US.utf-8\nLC_ALL=en_US.utf-8" > /etc/environment |
# Namespace / Service | |
- A pod can access a service in its own namespace by just using service name. | |
A pod can access a service in a different namespace by using below format. | |
<svc-name>.<ns-name>.<svc>.<cluster.local> | |
e.g db-service.dev.svc.cluster.local | |
- When a service is created, a DNS entry is added automatically in this format: | |
db-service.dev.svc.cluster.local | |
Here db-service is service name, dev is namespace, svc represents service and cluster.local is domain. | |
bind_host: 0.0.0.0
bind_port: 8080
beta_bind_port: 3001
users:
- name: admin
password: ''
auth_attempts: 5
block_auth_min: 15
http_proxy: ""
#!/bin/bash | |
# /etc/network/if-pre-up.d/sysctl-ipv6 | |
# Disable IPv6 auto configuration on Ubuntu because of some bugs | |
# https://bugs.launchpad.net/ubuntu/+source/linux/+bug/997605 | |
# IPv6 Privacy extensions | |
sysctl -w net.ipv6.conf.all.use_tempaddr=0 | |
sysctl -w net.ipv6.conf.default.use_tempaddr=0 | |
sysctl -w net.ipv6.conf.${IFACE}.use_tempaddr=0 |