Useless Thread MDCCCXXXII - For SoupyFIN, our beloved

Status
Not open for further replies.

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
That said I'm not mad. I'm riding the train home. The better team won as they should. Acting surprised about it is stupid. Yes the caps had their chances and blew a 3 goal lead but Florida is good.

Certainly no "laughing matter" especially when those lobbing the stones are embroiled in precarious situations of their own...
 
  • Like
Reactions: PanthersPens62

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
1652328458349.png
 

MetalheadPenguinsFan

Registered User
Sep 17, 2009
66,912
20,751
Canada
It's always funny to see how our resident trolls (who only come here to post derogatory and incendiary rhetoric) are conveniently silent when their "idols" are attacked. For instance Zaiden shogun has STILL refused to acknowledge that someone on g idle existed by the name of soojin before being canceled for bullying, or that naeun ("the good one") on APRIL was essentially removed from the band due to bullying accusation. But when other things happen that I'm interested in... Oh how convenient they appear out of the "shadows". Very suspicious!

It should also be noted that the Habs drafted someone who sexually assaulted someone to the point where diehard Habs fan Trudeau critiqued the draft pick yet Zaide would rather tell you about his dumb genshin pay to win crap or Chinese paladin (very OVERRATED game)

@MetalheadPenguinsFan

f*** the Habs.
 
  • Like
Reactions: John Price

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
I'm watching Morning Joe right now and they are talking about inflation. Better watch out, cream cheese is going up to 7 dollars soon...
 

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
Truckers aghast at Canadian fuel prices...perhaps they should "protest" in a convoy...:sarcasm:

Hard to ride the 400 north when diesel is 8 dollars a gallon...
 

PanthersPens62

Paul & Stanley
Mar 7, 2009
23,816
5,187
Home of The Cup
I'm watching Morning Joe right now and they are talking about inflation. Better watch out, cream cheese is going up to 7 dollars soon...
Morning Joe has been on fiya this morning.

Since you were classy about the game last night, I will give kudos to the Caps for using the 1-3-1 to try & neutralize us. It has worked well, much as I hate it.
 

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
I have nothing more to say about that game that hasn't already been said. It's just funny that people are trying to talk shit when their teams have either been eliminated or are at serious risk of being eliminated.
 

LarryFisherman

o̯̘̍͋̀͌̂͒͋͋ͯ̿ͯͦ̈́ͬ͒̚̚
May 9, 2013
6,365
2,662
Arvada, CO
@LarryFisherman busy working with vm's now that Avs are off for a week

I've been building out a full-scale kubernetes architecture to allow our new product (built on microservices) to integrate with our monolith. We'll be splitting the monolith out over the next 6-12 months, so kubernetes was the obvious path forward.

It's been a lot of work for a one man shop. Once I got it all running in AWS, they informed that the business decided to move all cloud-infra to Azure (which I don't know how to use), so I've been fumbling around with that for the last 5 weeks. Just got an alpha cluster running with our monolith product deployed into it. Going to start testing here and ironing out the kinks before building a stage and prod cluster.

So, while we still use vms to support those k8s nodes, I don't really do much directly with vms anymore.

Also building out pulumi to effectively automate the deployment of these clusters.

C#:
using Pulumi;
using Pulumi.Random;
using Pulumi.Tls;

/// <summary>
/// Configures the example. If password and public key for connecting
/// to the cluster are not set with `pulumi config`, we generate a
/// random password and key pair.
/// </summary>

namespace AzureAks {

    class MyConfig {
        public string K8SVersion { get; set; }
        public int SystemNodeCount { get; set; }
        public string SystemNodeSize { get; set; }
        public Input<int> CoreNodeCount { get; set; }
        public Input<string> CoreNodeSize { get; set; }
        public Input<int> GpuNodeCount { get; set; }
        public Input<string> GpuNodeSize { get; set; }       
        public PrivateKey GeneratedKeyPair { get; set; }
        public string AdminUserName { get; set; }
        public Output<string> Password { get; set; }
        public Output<string> SshPublicKey { get; set; }

        public MyConfig() {
            var cfg = new Config();

            K8SVersion = cfg.Get("k8sVersion") ?? "1.23.3";
            SystemNodeCount = cfg.GetInt32("nodeCount") ?? 2;
            SystemNodeSize = cfg.Get("nodeSize") ?? "standard_d2ads_v5";

            CoreNodeCount = cfg.GetInt32("coreNodeCount") ?? 0;
            CoreNodeSize = cfg.Get("coreNodeSize") ?? "standard_b2ms";

            GpuNodeCount = cfg.GetInt32("gpuNodeCount") ?? 0;
            GpuNodeSize = cfg.Get("gpuNodeSize") ?? "standard_nc4as_t4_v3";           

            GeneratedKeyPair = new PrivateKey("ssh-key", new PrivateKeyArgs {
                Algorithm = "RSA",
                RsaBits = 4096
            });

            AdminUserName = cfg.Get("adminUserName") ?? "testuser";

            var pw = cfg.Get("password");
            if (pw == null) {
                Password = GenerateRandomPassword();
            } else {
                this.Password = Output.Create(pw);
            }

            var sshPubKey = cfg.Get("sshPublicKey");
            if (sshPubKey == null) {
                SshPublicKey = GeneratedKeyPair.PublicKeyOpenssh;
            } else {
                SshPublicKey = Output.Create(sshPubKey);
            }
        }

        private Output<string> GenerateRandomPassword() {
            var pw = new RandomPassword("pw", new RandomPasswordArgs {
                Length = 20,
                Special = true
            });
            return pw.Result;
        }
    }

}
 

John Price

Gang Gang
Sep 19, 2008
384,988
30,519
too much time spent watching hilarious starcraft ladder streams, don't have "time" to post in the UT

@Mantis @Pip i signed up for ow2 keys when i get one i will let you know

until then i will continue to watch starcraft and diablo 2 streams
 
Status
Not open for further replies.

Ad

Upcoming events

Ad

Ad