Skip to content

Instantly share code, notes, and snippets.

View galek's full-sized avatar
🧭
I'm ready for new discoveries

Nikolay Galko galek

🧭
I'm ready for new discoveries
View GitHub Profile
@galek
galek / PseudoORM.ts
Created April 5, 2023 12:52
PseudoORMInterface for microservices
export abstract class PseudoORMInterface {
getDataFromTable<T1, T2>(TableName: string, valuesKeysForGetting: string[], conditions?: string[] | null): T1;
insertDataToTable(TableName: string);
updateDataToTable<T2>(Data:T2, TableName: string, conditions?: string[] | null): boolean;
deleteDataFromTable(TableName: string, conditions?: string[] | null);
}
export class PseudoORMImpl implements PseudoORMInterface {
@galek
galek / microshift-istio.md
Created June 24, 2023 21:37 — forked from tosin2013/microshift-istio.md
Run isitio on microshift

Install istio on mircoshift

You can find the installation instuctions in the link below.

Add metrics server components

kubectl apply -f https://raw.githubusercontent.com/redhat-et/ushift-workload/master/metrics-server/metrics-components.yaml