Questions tagged [deployment]

Deployment is the process or collection activities that make a system available for use.

Deployment is the process or collection activities that make a system available for use.

It can refer to hardware, software, or both and has varying levels of automation, from the completely automated "no-touch" deployments to completely manual ones. Wikipedia has a page dedicated to software deployments here.

1293 questions
0
votes
1 answer

How do you obtain $KUBE_CONFIG variable for a bitbucket deployment to a Kubernetes instance on Digital Ocean?

So my company has been in the process of moving our backend application hosting from digital ocean droplets to a digital ocean kubernetes cluster. However when following the bitbucket pipeline guide to update our pipelines for kubernetes…
0
votes
1 answer

How to prevent the Chrome Default Browser Prompt and Welcome Screen Using Master Preferences file?

I am attempting to deploy Chrome and have followed Jay Michaud's guide found HERE. I have created my JSON file corresponding to Chrome's most recent provided information on doing so found in the links provided in Jay's guide. I minify/compact my…
ahelton
  • 1
  • 1
0
votes
1 answer

How can I create an ecs service for my deploy

I’m learning CI/CD pipelines and I’ve come up with a question. I have a CloudFormation file that creates some static resources for my app (ECR repository, ECS Cluster and some roles) When creating my deployment pipeline in GitHub Actions I’ve set up…
0
votes
0 answers

Is there a way to script addons for Java Dev Eclipse on Linux (specifically C++ pluggins)?

I am trying to write a deployment script via USB for computer science linux labs in academia. To deploy we are having an admin user run the script locally on each machine, each user that needs to access is grouped by OneIdentity. One of the…
0
votes
1 answer

couldn't find key MYSQL_KEY in Secret default/mysql-secret

I have the following file that creates a mysql-secret for mysql deployment pod. apiVersion: v1 kind: Secret metadata: name: mysql-secret type: Opaque data: mysql-password: MTExMTEx mysql-root-password: MTExMTEx mysql-user: YQ== The problem…
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
1 answer

How to create a "DOckerfile" to containerize a "Flutter" app to deploy it on a Kubernetes cluster?

I am just wondering to know how should I create a docker file for a Flutter app then deploy it on a Kubernetes cluster? I found the following Dockerfile and server.sh script from this website but I am not sure if this a correct way of doing it? #…
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
0 answers

How create automatic deployement and allow my customer dynamic create and access my app on subdomains?

I have created an nodejs app and i want my customer to be able to dynamic create an instance of my app with automatic deployement on subdomains for example ‘customer1.mydomain.com’. I know i can create vhost with node vhost package and nginx but i…
rach
  • 1
0
votes
1 answer

my nginx server was working perfectly fine and now shows a 502 error

I'm deploying my project, I had no problem until i decided to buy a domain for my digital ocean droplet i added the records from my namecheap domain to my droplet i was working on it then suddenly when i want access to myproject/api it's now showing…
0
votes
1 answer

"CrashLoopBackOff" while deploying mysql on multi-node cluster

This is my configmap.yaml file: apiVersion: v1 kind: ConfigMap metadata: name: mysql labels: app: mysql app.kubernetes.io/name: mysql data: primary.cnf: | # Apply this config only on the primary. [mysqld] log-bin …
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
2 answers

What is the equivalent command of "minikube start --memory 5120 --cpus=4" for "Kind"?

Here in Cassandra deployment instruction, it says: Caution: Minikube defaults to 2048MB of memory and 2 CPU. Running Minikube with the default resource configuration results in insufficient resource errors during this tutorial. To avoid these…
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
1 answer

When and How we should specify "clusterIP" inside the "service.yaml" file?

I tried to deploy mysql and cassandra databases using kubernetes.io/docs instructions. In both of them, within the service.yaml files, they use clusterIP: None like following: For cassandra: apiVersion: v1 kind: Service metadata: labels: …
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
1 answer

Why "Cassandra" uses "StatefulSet" instead of "Deploymdnt" file for "Kubernetes"?

I am trying to deploy Cassandra on my local Kind cluster running on my Ubuntu 22.04 machine. The only instruction I found is this, that uses a StatefulSet for that. I am just wondering to know, isn't a Deployment file something newer? Why they…
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
1 answer

Should I add a "MySQL_URI" to the MySQL Kubernetes deployment file?

This is a Kubernetes deployment file that originally was using only MongoDB database. I tried to add MySQL to it as well like below: apiVersion: apps/v1 kind: Deployment metadata: name: auth-depl spec: replicas: 1 selector: matchLabels: …
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
0 answers

How to use a local cluster by "Skaffold" while using "Kubeadm" for the "Kubernetes"?

I am trying to deploy my NodeJS application on a local Kubernetes cluster, using skaffold but I get the following result: DEBU[0018] Pod "expiration-depl-7989dc5ff4-lkpvw" scheduled but not ready: checking container statuses subtask=-1…
best_of_man
  • 367
  • 1
  • 3
  • 12
0
votes
0 answers

How to configure let’s encrypt with Cloudflare subdomain?

I have a WordPress website hosted by HostGator and I want a subdomain to redirect to my Application server. The problem is that after adding the subdomain (type “A” in the dns list I get a 521 error. After reading troubleshoot, I think the probable…
Eric