Sign in
agent:
Auto Exec

Summarize all recent exceptions and errors for a given service (eg: cart or payment) in jaeger.

Basic Elasticsearch Operations

Add a key-value pair

Add credentials for various integrations

What is an "Expert"? How do we create our own expert?

Process Grafana Alerts

Managing workspaces and access control

DagKnows Architecture Overview

Managing Proxies

Setting up SSO via Azure AD for Dagknows

All the experts

Enable "Auto Exec" and "Send Execution Result to LLM" in "Adjust Settings" if desired

(Optionally) Add ubuntu user to docker group and refresh group membership

Deployment of an EKS Cluster with Worker Nodes in AWS

Adding, Deleting, Listing DagKnows Proxy credentials or key-value pairs

Comprehensive AWS Security and Compliance Evaluation Workflow (SOC2 Super Runbook)

AWS EKS Version Update 1.29 to 1.30 via terraform

Instruction to allow WinRM connection

MSP Usecase: User Onboarding Azure + M365

Post a message to a Slack channel

How to debug a kafka cluster and kafka topics?

Docusign Integration Tasks

Open VPN Troubleshooting (Powershell)

Execute a simple task on the proxy

Assign the proxy role to a user

Create roles to access credentials in proxy

Install OpenVPN client on Windows laptop

Setup Kubernetes kubectl and Minikube on Ubuntu 22.04 LTS

Install Prometheus and Grafana on the minikube cluster on EC2 instance in the monitoring namespace

Sample selenium script

update the EKS versions in different clusters

AI agent session 2024-09-12T09:36:14-07:00 by Sarang Dharmapurikar

Install kubernetes on an ec2 instance ubuntu 20.04 using kubeadm and turn this instance into a master node.

Turn an ec2 instance, ubuntu 20.04 into a kubeadm worker node. Install necessary packages and have it join the cluster.

Install Docker

Parse EDN content and give a JSON out

GitHub related tasks

Check whether a user is there on Azure AD and if the user account status is enabled

Get the input parameters of a Jenkins pipeline

Get the console output of last Jenkins job build

List my Jenkins pipelines

Get last build status for a Jenkins job

Trigger a Jenkins job with param values

Give me steps to do health checks on a Linux Server

Trigger for tickets which have status new/open, group DevOps, assignee None, and public comment includes a keyword

Process Zendesk Ticket for updating comments (auto reply)

Add a public comment to a Zendesk Ticket

Identify list out IAM users list in AWS using dagknows

Restoring an AWS Redshift Cluster from a Snapshot

Notify about disk space before cleaning up

Install kubernetes on an ec2 instance ubuntu 20.04 using kubeadm and turn this instance into a master node.

There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Install kubernetes on an ec2 instance ubuntu 20.04 using kubeadm and turn this instance into a master node.
  1. 1

    Update and upgrade the system packages

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Ensure the system packages are up to date before installing Kubernetes.
    sudo apt update sudo apt upgrade -y
    copied
    1
  2. 2

    Install Docker

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
    Install Docker as it is a prerequisite for running Kubernetes components.
    sudo apt install docker.io -y sudo systemctl enable docker sudo systemctl start docker
    copied
    2
  3. 3

    Install kubeadm, kubelet, and kubectl for master node

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

    Install the Kubernetes components on the ec2 instance.

    sudo apt install -y apt-transport-https curl echo "deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.28/deb/ /" | sudo tee /etc/apt/sources.list.d/kubernetes.list curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.28/deb/Release.key | sudo gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg sudo apt update sudo apt install -y kubeadm kubelet kubectl sudo apt-mark hold kubeadm kubelet kubectl
    copied
    3
  4. 4

    Initialize the Kubernetes cluster and configure ec2 instance as a master node

    There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.

    Use kubeadm to initialize the cluster and configure the ec2 instance as a master node.

    sudo kubeadm init --pod-network-cidr=10.244.0.0/16 mkdir -p $HOME/.kube sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config sudo chown $(id -u):$(id -g) $HOME/.kube/config kubectl apply -f https://raw.githubusercontent.com/coreos/flannel/master/Documentation/kube-flannel.yml
    copied
    4