SoFi account charged… BUT, have no domains. Why?

I entered my SoFi card at checkout,
I did all the auth verification .
Did the auth codes and that.
Allowed me to add to card and “purchase”, BUT, it shows no domains are registered to me… still says they’re “available”.
Whats going on???
Do I need to send a id?

This is making me want to go with, Namecheap

u/Codeeveryday123 — 6 days ago

Porkbun charged for domains, but says i have none owned

I bought 3 domains,
$7 correct price

BUT…. Nothing shows up under domain management
My card was charged $7,

But tho… my cart still shows the 3 domains and also the price.

Why????

reddit.com
u/Codeeveryday123 — 6 days ago

VULTR with NB vs TailScale

I recently setup VULTR with TailScale,
It works…. Except for the auto join and accept VMs.
I have to except them at a times, to enable ssh .

How well does NB handle VMs auto joining and being able to ssh into them without having to “NetBird up” ?

reddit.com
u/Codeeveryday123 — 14 days ago
▲ 0 r/devops

Opentofu + Scalr (alt Hashicorp), has anyone used Scalr? (Using Vultr for VM)

What did you have to change, using Scalr? I’m not wanting the extra costs with Hashicorp,
So far, a small run I did (not using Vultr yet),
It works pretty well.

What in the tf files,
Change when using Scalr vs Hashicorp?

reddit.com
u/Codeeveryday123 — 19 days ago

What do I change to use OpenTofu?

I have a terraform + Hashicorp project using Vultr for VM.

I’m trying out OpenTofu,
I’m not wanting the extra costs with Hashicorp right now.

Had anyone tried OpenTofu?
What do I need to change with my tf files?

reddit.com
u/Codeeveryday123 — 19 days ago

Terraform vs Pulumi vs OpenToFu, is Pulumi good?

What’s a good alternative to Hashicorp?

Im close to the end of the free trial,
Im using Vultr for VMs.

Vultr works well with TF,

I like how hashicorp you can see runs and errors,

Does Pulumi have that?

reddit.com
u/Codeeveryday123 — 19 days ago

How do I add a ip to a whitelist so it connects? (Terraform apply) using Vultr cloud

I’m using Vultr, and I can create and delete instances.

But, now I’m implementing more of hashicorp,
When I “apply”, it errors and says that there’s a ip problem, and that it needs to be “allowed” or “white listed”?

reddit.com
u/Codeeveryday123 — 21 days ago

How do I whitelist a ip? Hashicorp fails on “apply” I’m using Vultr

How do I allow VULTR and Terraform iP to be allowed?

I’ll see comments about to “whitelist”,
But I can’t find that .

Is it on the terraform side?

I do have a instance that works fine, BUT, I forgot to add the hashicorp config to it

The error project… I can init, plan, then apply… it errors about a ip

reddit.com
u/Codeeveryday123 — 21 days ago

Am i missing anything? I want a Ubuntu server in Chicago, im using Vultr

What am I missing?
Im getting an errors about names and instances don’t match?
I want to have a terraform file that will create a Vultr Ubuntu instance in Chicago

```tf
terraform {
required_providers {
vultr = {
source = "vultr/vultr"
version = "~> 2.23"
}
}
}

# Configure the Vultr Provider
provider "vultr" {
api_key = "My API Key here"
}

# Deploy Vultr Cloud Compute Instance
resource "vultr_instance" "ubuntu_chicago_server" {
label = "my-ubuntu-chicago-vm"
region = "ord" # Vultr's Chicago region code
plan = "vc2-1c-1gb" # 1 CPU, 1GB RAM (standard plan)
os_id = 2158 # Ubuntu 24.04 LTS x64
enable_ipv6 = true

# Optional: Attach a pre-created SSH key by ID
# ssh_key_ids = ["YOUR_SSH_KEY_ID"]
}

output "instance_ip" {
value = vultr_instance.ubuntu_chicago_server.main_ip
}

output "instance_default_password" {
value = vultr_instance.ubuntu_chicago_server.default_password
sensitive = true
}
```

reddit.com
u/Codeeveryday123 — 21 days ago

“Warning: v1 Endpoints is deprecated in v1.33+; use discovery.k8s.io/v1 Endpointsl ice“ K3S shows this as a error

Running:

“sudo kubectl get svc, endpoints -n kube-system”

Gives me a depreciation warning
(this is a brand new setup strait from K3S docs),

Warning is:

“Warning: v1 Endpoints is deprecated in v1.33+; use discovery.k8s.io/v1 Endpointsl ice“

Do I need to upgrade it?

Cattle system dosnt have external iP’s

reddit.com
u/Codeeveryday123 — 27 days ago

Who uses K3S / K8/ Kubernetes? Is it reliable?

I’ve spent a week trying to get k3s to work with 2 Pi4, this has been a joke

Pi4: server
Pi4: client
Got them connected (k3s)
Added rancher and cert-manager….
Connection refused… can’t see the host (says server refused)

iPs are defaulting to the 172.0.0.1,
I change all the configs and it still does

I when I added my agent, it said it was connecting to my server… but that defaulted

It’s been a massive waste of time

I used the official commands off of k3s

Then… I tried setting up rancher, and that really messed up.
I added the ip and host address to the config… dosnt stay the same… edited the root yaml file, that changed …. I tried even Kubernetes-dashboard… “connection refused”

I added the correct cert-manager,
Nothing works right

How is K8/k3s worth it?

reddit.com
u/Codeeveryday123 — 28 days ago

Would it be “obsolete” if I ran k3s in a docker container to isolate ports?

I’m running into ports conflicting, and “server can’t be reached”,

I’m trying to run Rancher and then I’ve tried headlamp.

But still “server can’t be reached”,
I’ve changed the ips to point to the URLs,
The url is “loading” but still says can’t be reached

I’ve even put it in my router dns

So, would running k3s in a docker container make anything obsolete on, trying to be 100% Kubernetes?

reddit.com
u/Codeeveryday123 — 28 days ago

Not all pods of Rancher start, says “connection refused”. My cert manager is all fine

I ran the “more info” commands for the pods that show an error,
What does “connection refused” typically mean?
My cert-manager is fine, all running

u/Codeeveryday123 — 29 days ago

Using artifact commands, do I ever need to creat a yaml file?

I rarely see someone in a Tutorial create yaml file using k3s

When do I need to?

I’m trying to get headscal and also trying to get rancher working…. Didn’t work

reddit.com
u/Codeeveryday123 — 1 month ago

Where do add a host at for rancher? 192.###.#.# rancher.io.local?

Where do i define the host to be able to view it locally?
I keep getting “https” not allowed”

Where do i edit the host to point to a http?

reddit.com
u/Codeeveryday123 — 1 month ago

Is rancher popular to use still? It errors and says ports refuse. Docs don’t seem updated

Is Rancher used still widely?
I’m getting the error of ports are refusing
It mentions port 80, but it’s 6443 for k3s,
I edit the 172.0.0.1 host to my ip, didn’t work…

I got to the page of where it’s a url similar to rancher.io.com

But that didn’t work either

reddit.com
u/Codeeveryday123 — 1 month ago

Error: INSTALLATION FAILED: cluster reachability check failed: kubernetes cluster unreachable

I’m getting the error of:

Error: INSTALLATION FAILED: cluster reachability check failed: kubernetes cluster unreachable: Get "http://localhost:8080/version": dial tcp [::1]:8080: connect: connection refused

When trying to install rancher when I run, for a certain manager:

“helm install cert-manager jetstack/cert-manager \
--namespace cert-manager \
--create-namespace \
--set crds.enabled=true”

reddit.com
u/Codeeveryday123 — 1 month ago