kubectl apply -f mongo-secret.yaml
kubectl apply -f mongo.yaml
kubectl apply -f mongo-configmap.yaml
kubectl apply -f mongo-express.yaml
kubectl get pod
#!/bin/sh | |
print_list() { | |
reset | |
echo "(1) - Search Address Book" | |
echo "(2) - Add an Address Book entry" | |
echo "(3) - Remove an Address Book entry" | |
echo "(4) - For quit the app, press 4, goodbye..." |
#! /bin/bash | |
# ECHO COMMAND | |
# echo Hello World! | |
# VARIABLES | |
# Uppercase by convention | |
# Letters, numbers, underscores | |
NAME="Bob" | |
# echo "My name is $NAME" |
This is a collection of information on PostgreSQL and PostGIS for what I tend to use most often.
Module VBModule | |
Sub Main() | |
'burada kullanıcıdan iki tane sayı alıyoruz' | |
dim sayi1 as Integer = Console.Readline() | |
dim sayi2 as Integer = Console.Readline() | |
'burada aldığımız iki sayı arasında iki tane rastgele değer üretiyoruz' | |
dim rastgeleSayi1 as Integer = CInt(Math.Ceiling(Rnd() * sayi1)) + sayi2 | |
dim rastgeleSayi2 as Integer = CInt(Math.Ceiling(Rnd() * sayi1)) + sayi2 | |