Claude.ai

Dr. Software Engineer

  • #
  • @Ryan
  • 60 Words
  • Tested
  • Tips
  • HQ Images
  • 439
(0.0)

Meet Dr. Software Engineer! 👨‍💻 Merging the precision of engineering with the innovation of tech medicine, they diagnose system issues and prescribe robust solutions. *Benefits?* Enhanced code health 💊, streamlined processes 🔄, and innovative software treatments 🚀.

This tech physician optimizes your digital ecosystem, ensuring your software operates at peak performance. 📈 With a PhD in problem-solving and a knack for cutting-edge technologies, Dr. Software Engineer is the cure for your coding ailments. Trust your code in the hands of a tech doc! 🛠️

19.99

Ask Dr. Software Engineer what you would to create

By purchasing this prompt, you agree to our terms of service.

1 year ago
Prompt Details
Claude.ai

Programming

Preview Input:

Kubernetes deployment Wordpress blog to a Kubernetes cluster, handle initializing the database that stores the blog's content, specify what type of replicas to use and how many, and handle resource restraints such as memory and CPU -- the output should be able to handle the Wordpress blog's components such as the database and the service type -- for context, the project i am working on is deploying my optimized wordpress blog, so the script should reflect this This prompt with create scripts necessary for software deployment, clustering, configuration, javascript, kubernetes, terraform, configurations, powershell, etc.. and much much more.. Being a Software Developer / Architect with over 22 years experience I have been able to inject my knowledge into this prompt to get the best results possible for the outcome.



Preview Output:

apiVersion: apps/v1 kind: Deployment metadata: name: wordpress spec: replicas: 2 selector: matchLabels: app: wordpress template: metadata: labels: app: wordpress spec: containers: - name: wordpress image: your-wordpress-image ports: - containerPort: 80 env: - name: WORDPRESS_DB_HOST value: mysql - name: WORDPRESS_DB_NAME value: wordpress - name: WORDPRESS_DB_USER value: your-db-username - name: WORDPRESS_DB_PASSWORD value: your-db-password resources: requests: memory: "256Mi" cpu: "100m" limits: memory: "512Mi" cpu: "500m" imagePullSecrets: - name: your-image-pull-secret --- apiVersion: v1 kind: Service metadata: name: wordpress spec: selector: app: wordpress ports: - protocol: TCP port: 80 targetPort: 80 type: LoadBalancer --- apiVersion: apps/v1 kind: Deployment metadata: name: mysql spec: replicas: 1 selector: matchLabels: app: mysql template: metadata: labels: app: mysql spec: containers: - name: mysql image: mysql:5.7 env: - name: MYSQL_DATABASE value: wordpress - name: MYSQL_USER value: your-db-username - name: MYSQL_PASSWORD value: your-db-password - name: MYSQL_RANDOM_ROOT_PASSWORD value: "1" ports: - containerPort: 3306 volumeMounts: - name: mysql-persistent-storage mountPath: /var/lib/mysql resources: requests: memory: "256Mi" cpu: "100m" limits: memory: "512Mi" cpu: "500m" imagePullSecrets: - name: your-image-pull-secret volumes: - name: mysql-persistent-storage persistentVolumeClaim: claimName: mysql-pvc --- apiVersion: v1 kind: Service metadata: name: mysql spec: selector: app: mysql ports: - protocol: TCP port: 3306 targetPort: 3306 type: ClusterIP --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: mysql-pvc spec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi --- apiVersion: v1 kind: PersistentVolumeClaim metadata: name: wordpress-pvc spec: accessModes: - ReadWriteOnce resources: requests: storage: 1Gi



More from @ Ryan