This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use chrono::{DateTime, Utc}; | |
use hmac::{Hmac, Mac, NewMac}; | |
use once_cell::sync::Lazy; | |
// notice this is percent_encoding=1.0.1 since I haven't bothered to | |
// fix this for latter versions of the crate. | |
use percent_encoding::{define_encode_set, utf8_percent_encode, SIMPLE_ENCODE_SET}; | |
use sha2::{Digest, Sha256}; | |
use std::env; | |
use std::fmt::Write; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
helm upgrade --install --set controller.service.type=NodePort --set controller.service.nodePorts.http=32080 --set controller.service.nodePorts.https=32443 nginx-ingress stable/nginx-ingress |