KubeSQLServer Operator is a completely free and open-source (MIT licensed) Kubernetes operator designed to help you run and manage Microsoft SQL Server seamlessly.
This project is intended to be an open-source alternative to D2HI's Dx Operator, which requires a license D2HI link.
Simply deploy into your Kubernetes cluster like so
kubectl create namespace sql-server
kubectl config set-context --current --namespace=sql-server
kubectl apply -f https://raw.githubusercontent.com/DotKube/KubeSQLServer-Operator/main/deploy/yaml/deploy.yaml
kubectl get all
For those on windows, you can run this to quickly install kubesql operator
docker run --rm -it `
--network host `
-v $env:USERPROFILE\.kube:/root/.kube `
fedora:41 bash -c "
dnf install -y curl sudo && \
curl -LO https://dl.k8s.io/release/v1.22.2/bin/linux/amd64/kubectl && \
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl && \
export KUBECONFIG=/root/.kube/config && \
kubectl create namespace sql-server && \
kubectl config set-context --current --namespace=sql-server && \
kubectl apply -f https://raw.githubusercontent.com/DotKube/KubeSQLServer-Operator/main/deploy/yaml/deploy.yaml && \
kubectl get all
"
and then start creating SQL Server instances using the CRDs provided by the operator.
# ... yaml omitted for brevity
apiVersion: sql-server.dotkube.io/v1alpha1
kind: SQLServer
metadata:
name: sqlserver-instance
namespace: sqlserver-example
spec:
version: "2022"
storageClass: "longhorn"
storageSize: "6Gi"
secretName: sqlserver-secret
enableHighAvailibility: true
enableFullTextSearch: true
serviceType: LoadBalancer
---
apiVersion: sql-server.dotkube.io/v1alpha1
kind: Database
metadata:
name: foo
namespace: sqlserver-example
spec:
instanceName: sqlserver-instance
databaseName: Foo
---
apiVersion: sql-server.dotkube.io/v1alpha1
kind: Database
metadata:
name: bar
namespace: sqlserver-example
spec:
instanceName: sqlserver-instance
databaseName: Bar
and you're good to go! You should be able to see the effect of the CRDs in your SQL Server instance.
Here are the planned features and milestones for KubeSQLServer Operator:
- Manage existing SQL Server instances
- CLI Tooling
- Helm Chart in a public repo
- Documentation Site
- Data API Integration
- Testing Strategies
Run the operator locally on your laptop while applying necessary CRDs and creating an instance in a Kind cluster.
This is ideal for debugging and real-time development.
task quick-dev
Build and deploy the operator to a Kind cluster, replicating a production-like environment for testing.
task quick-deploy
If you have any questions or need help, please feel free to reach out to us on our Slack Channel