Skip to content

Instantly share code, notes, and snippets.

View macroramesh6's full-sized avatar
:octocat:

Ramesh Murugesan macroramesh6

:octocat:
View GitHub Profile
@macroramesh6
macroramesh6 / .gitignore
Created February 6, 2018 09:23
Cordova Cli .gitignore
*.keystore
*.sw*
platforms/
plugins/
app/bower_components/
node_modules/
.tmp/
.DS_Store
*.log
@macroramesh6
macroramesh6 / .gitignore
Last active February 6, 2018 09:23
Cordova Cli .gitignore
*.keystore
*.sw*
platforms/
plugins/
app/bower_components/
node_modules/
.tmp/
.DS_Store
*.log
@macroramesh6
macroramesh6 / ubuntu-sleep.yaml
Last active April 27, 2021 11:05 — forked from tcdowney/ubuntu-sleep.yaml
Ubuntu Sleep Pod
apiVersion: v1
kind: Pod
metadata:
name: ubuntu
namespace: smtp-test
labels:
app: ubuntu
spec:
containers:
- image: ubuntu
:: copy pg_hba.conf to the E:/postgres location
:: this is to allow the postgres user to connect to the database
@echo off
:: XCOPY Docs https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/xcopy#syntax
XCOPY /F /Y /D "C:\Program Files\PostgreSQL\9.3\pg_hba.conf" "E:\postgres\pg_hba.conf"
:: Restart PostgresSQL server
@REM pg_ctl restart
@REM call
a4b.amazonaws.com
acm-pca.amazonaws.com
acm.amazonaws.com
alexa-appkit.amazon.com
alexa-connectedhome.amazon.com
amazonmq.amazonaws.com
apigateway.amazonaws.com
application-autoscaling.amazonaws.com
appstream.application-autoscaling.amazonaws.com
appsync.amazonaws.com
@macroramesh6
macroramesh6 / 001 - Installation.md
Last active November 28, 2023 12:21
# Install and manage mysql operator on k8s cluster

Installing and Verifying MySQL Operator on a Kubernetes Cluster

If you have an existing Kubernetes cluster with multiple nodes, each having a unique namespace and running a MySQL database server, you can install and verify the MySQL Operator on this cluster. The MySQL Operator is an operator for managing MySQL InnoDB Cluster setups inside a Kubernetes Cluster. It automates the setup and maintenance of MySQL InnoDB Cluster setups, including upgrades and backups [Source 0].

To install and verify the MySQL Operator, follow these steps:

  1. Install the MySQL Operator

    Use kubectl to install the MySQL Operator by applying the manifest files. The manifest files contain the required Custom Resource Definitions (CRDs) and the operator deployment configuration.