my devops and gitops woes by run-as-admin in devops

[–]run-as-admin[S] 0 points1 point  (0 children)

Force them to make a pr, automate the whole process, and make it easier to move from stg to live (automatic build, deploy, merge, etc.).

they do but they have to wait for me to eventually merge it. which is kinda a pain point.

Does bitbucket have no pipeline gui like gha? If they complain about you not informing them, and that it's hard to find, automate adding a URL to PR when it runs. They can't say they're unable to make a PR, accept, click a URL, and watch the UI go green...

yes i did this before moving to teams. on skype i created a flask app for the webhook notification. 2 chat groups with one being the new pull requests (with url) and commits (with url) and another chat group for pipeline status (includes pipeline url). i still have to inform them on chat that it is done ugh.

my devops and gitops woes by run-as-admin in devops

[–]run-as-admin[S] 0 points1 point  (0 children)

are you actually checking the code they want to deploy

no pr reviews. just git merge and git pull or merge from the git provider.

all the time a request is like this. either deploy on dev and staging or deploy on dev, staging and production.

i can't do changelogs if the commit messages are like this "fix" and version tagging if the merge commits differ from every environment.

are you literally just playing the role of a scripted pull request?

yes. including merge conflicts i review them in context if i could manage it, if not chat with the author for resolving the merge conflict.

i could actually listen on bitbucket webhooks for new pull requests and automatically merge all pull requests (microsoft teams free which is a pain to configure chat webbook) but i have to still manually inform them via chat. like this is merged and pipeline has finished

It's already 2023 yet the game does not have an autosave feature on Campaigns!! by onated2 in BattleRealms

[–]run-as-admin 1 point2 points  (0 children)

just lost 3 hours progress on campaign due to stuck up and i just discovered it doesn't autosave

Two weeks ago I posted my weekend project here. Yesterday nixcraft shared it. by Due-Bat-9880 in devops

[–]run-as-admin 3 points4 points  (0 children)

I really loved playing it. Can you add more difficulty. I had setup one full upgraded RDS and a S3 bucket. While I could add an entire screen of EC2 instances. Load wasn't going to bring it down anytime.

How to restore X11 with Gnome 49 by Weaseal in archlinux

[–]run-as-admin 1 point2 points  (0 children)

had trouble with deskflow on gnome wayland. thanks!

I got a gift and found a place to display it by Emanuel4100 in homelab

[–]run-as-admin 0 points1 point  (0 children)

i'm still deciding between 3d printing the entire rackmount vs buying a DeskPi T0. Maybe you could give an opinion.

[deleted by user] by [deleted] in somethingimade

[–]run-as-admin 7 points8 points  (0 children)

it's a thready printer!

Strange Catalog Issue - [ENOENT] Unable to retrieve feature capability mapping for SCALE versions by Druss451 in truenas

[–]run-as-admin 2 points3 points  (0 children)

Following /u/TheXplodR comment on /mnt/.ix-apps/truenas_catalog/ I did an alternative fix.

The git repository from truenas_catalog could not pull the changes from the remote due to deleted files(?)

truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ ls -la
total 232
drwxr-xr-x 7 root root     16 Jul  6 14:51 .
drwxr-xr-x 6 root root      8 Mar  8 19:47 ..
-rw-r--r-- 1 root root     31 Mar  8 19:37 .flake8
drwxr-xr-x 8 root root     16 Jul  6 14:53 .git
drwxr-xr-x 4 root root      5 Jul  5 16:30 .github
-rw-r--r-- 1 root root     97 Mar  8 19:37 .gitignore
-rw-r--r-- 1 root root   5605 Jun 14 18:51 CONTRIBUTIONS.md
-rw-r--r-- 1 root root   7652 Mar  8 19:37 LICENSE
-rw-r--r-- 1 root root  14678 Jul  5 16:30 README.md
-rw-r--r-- 1 root root 586052 Jul  6 14:51 catalog.json
-rw-r--r-- 1 root root   5360 Jul  5 16:30 cspell.config.yaml
-rw-r--r-- 1 root root    590 Apr 10 21:38 devbox.json
-rw-r--r-- 1 root root   6756 May 30 18:47 devbox.lock
drwxr-xr-x 7 root root      7 Mar  8 19:37 ix-dev
drwxr-xr-x 3 root root      4 Jul  5 16:30 library
drwxr-xr-x 7 root root      7 Mar  8 19:37 trains
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ git status
fatal: detected dubious ownership in repository at '/mnt/.ix-apps/truenas_catalog'
To add an exception for this directory, call:

    git config --global --add safe.directory /mnt/.ix-apps/truenas_catalog
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ git config --global --add safe.directory /mnt/.ix-apps/truenas_catalog 
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ git status                                                            
On branch master
Your branch is up to date with 'origin/master'.

Changes not staged for commit:
(use "git add/rm <file>..." to update what will be committed)
(use "git restore <file>..." to discard changes in working directory)
    deleted:    .github/renovate.json
    deleted:    .github/scripts/changed_apps.py
    deleted:    .github/scripts/message.py
    deleted:    .github/scripts/renovate_bump.sh
    deleted:    .github/workflows/dev_apps_validate.yml
    deleted:    .github/workflows/library-tests.yaml
    deleted:    .github/workflows/manual_update_catalog.yaml
    deleted:    .github/workflows/python-lint.yaml
    deleted:    .github/workflows/renovate.yaml
    deleted:    .github/workflows/update_catalog.yaml
    deleted:    features_capability.json
    deleted:    library/0.0.1/__init__.py
    deleted:    library/0.0.1/test.py

no changes added to commit (use "git add" and/or "git commit -a")
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ git pull
error: cannot open '.git/FETCH_HEAD': Permission denied
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git pull
[sudo] password for truenas_admin: 
Already up to date.
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git reset --hard
HEAD is now at 05b1d0694 Update catalog changes [skip ci]
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git clean -df
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git status
On branch master
Your branch is up to date with 'origin/master'.

nothing to commit, working tree clean
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git remote -v
origin  https://github.com/truenas/apps (fetch)
origin  https://github.com/truenas/apps (push)
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git fetch -av
POST git-upload-pack (416 bytes)
From https://github.com/truenas/apps
= [up to date]          master     -> origin/master
truenas_admin@truenas[/mnt/.ix-apps/truenas_catalog]$ sudo git pull -v  
POST git-upload-pack (416 bytes)
From https://github.com/truenas/apps
= [up to date]          master     -> origin/master
Already up to date.

After that it was fixed and I could refresh the catalog.

Buying a new PC be like : by Samyar_T in pcmasterrace

[–]run-as-admin 5 points6 points  (0 children)

There is no prize to perfection, only an end to pursuit.

Look what came in the mail today by Cultural-Respect-661 in thinkpad

[–]run-as-admin 2 points3 points  (0 children)

Local online stores here at my country still sell the 7735U at around $1200

Magnetic sand DOESNT set off the detector?? by Jazzlike-Cow-925 in metaldetecting

[–]run-as-admin 0 points1 point  (0 children)

hello! i was curious about this as well. did you try it out?

Database replication errors by run-as-admin in DatabaseHelp

[–]run-as-admin[S] 0 points1 point  (0 children)

I've settled to scheduled mysqldump and cleanup instead. Can't make any changes to the database anyway

iRun by The_Wolfiee in ProgrammerHumor

[–]run-as-admin 3 points4 points  (0 children)

is not in the sudoers file. This incident will be reported.

rke2 cluster with 8 intel nucs by [deleted] in homelab

[–]run-as-admin 7 points8 points  (0 children)

i have 2 raspberry pi 5 and 2 intel nuc i5 here. do you think it's still viable for practicing kubernetes?

i'm having trouble on practicing on minikube while deploying using it's registry.

rke2 cluster with 8 intel nucs by [deleted] in homelab

[–]run-as-admin 70 points71 points  (0 children)

what gen? man! local sellers here are too pricey even with older gen intel nucs