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
apiVersion: backstage.io/v1alpha1 | |
kind: Resource | |
metadata: | |
name: my-cluster | |
annotations: | |
kubernetes.io/api-server: 'https://127.0.0.1:53725' | |
kubernetes.io/api-server-certificate-authority: # base64-encoded CA | |
kubernetes.io/auth-provider: 'oidc' | |
kubernetes.io/oidc-token-provider: 'microsoft' | |
kubernetes.io/skip-metrics-lookup: 'true' |
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
#include <bits/stdc++.h> | |
using namespace std; | |
#define ll long long | |
#ifndef ONLINE_JUDGE | |
#define debug(x) cerr<<#x<<":";_print(x); | |
#define edl cerr<<endl; | |
#else | |
#define debug(x); | |
#define edl; |