This file contains hidden or 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
# Upgrade plan | |
apiVersion: upgrade.cattle.io/v1 | |
kind: Plan | |
metadata: | |
name: upgrade-plan | |
namespace: system-upgrade # created by system-upgrade controller manifest | |
spec: | |
concurrency: 1 # upgrade one node at a time | |
cordon: true # make the node unschedulable | |
nodeSelector: |
This file contains hidden or 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
locals { | |
psql_ui_path = "github.com/zalando/postgres-operator/ui/manifests" | |
} | |
terraform { | |
required_providers { | |
kustomization = { | |
source = "kbst/kustomization" | |
version = "0.5.0" |
This file contains hidden or 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
locals { | |
psql_ui_path = "github.com/zalando/postgres-operator/ui/manifests" | |
} | |
terraform { | |
required_providers { | |
kustomization = { | |
source = "kbst/kustomization" | |
version = "0.5.0" | |
} |
This file contains hidden or 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
# Add the provider | |
provider "kubernetes-alpha" { | |
config_path = "~/.kube/config" | |
} | |
resource "kubernetes_manifest" "postgresql_acid_minimal_cluster" { | |
# Add the provider | |
provider = kubernetes-alpha | |
manifest = { |
This file contains hidden or 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: "acid.zalan.do/v1" | |
kind: postgresql | |
metadata: | |
name: acid-minimal-cluster | |
namespace: ha-psql | |
spec: | |
teamId: test-team | |
volume: | |
size: 250Mi | |
numberOfInstances: 2 |
This file contains hidden or 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
provider "helm" { | |
kubernetes { | |
config_path = "~/.kube/config" | |
} | |
} | |
provider "kubernetes" { | |
config_path = "~/.kube/config" | |
} |
This file contains hidden or 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
namespace boost { | |
namespace archive { | |
template<typename Archive, typename Rep, typename Period> | |
void load(Archive& ar, std::chrono::duration<Rep, Period> dur, const unsigned int version) { | |
int64_t duration; | |
ar >> duration; | |
dur = std::chrono::duration<Rep, Period>(duration); | |
} | |
template<typename Archive, typename Rep, typename Period> |
This file contains hidden or 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
# Istedigim | |
SELECT t."Id", t."CurrentCapacity", t."Description", t."IsVisible", t."MaxCapacity", t."StartDate", t."Dest_AddressDescription", t."Dest_AddressLine", t."Dest_City", t."Dest_Country", t."Dest_Province", t."Dest_Street", t."Dest_Coord_X", t."Dest_Coord_Y", t."Src_AddressDescription", t."Src_AddressLine", t."Src_City", t."Src_Country", t."Src_Province", t."Src_Street", t."Src_Coord_X", t."Src_Coord_Y" | |
FROM travel_plan AS t | |
WHERE ((t."Src_Coord_X" = @__src_Coord_X_0) AND (t."Src_Coord_Y" = @__src_Coord_Y_1)) AND ((t."Dest_Coord_X" = @__dest_Coord_X_2) AND (t."Dest_Coord_Y" = @__dest_Coord_Y_3)) | |
# Generate Edilen | |
SELECT t."Id", t."CurrentCapacity", t."Description", t."IsVisible", t."MaxCapacity", t."StartDate", t11."Id", t11."Dest_AddressDescription", t11."Dest_AddressLine", t11."Dest_City", t11."Dest_Country", t11."Dest_Province", t11."Dest_Street", t13."Id", t13."Dest_Coord_X", t13."Dest_Coord_Y", t4."Id", t4."Src_AddressDescription", t4."Src_AddressLine", t4."Src_City", t4."Src_Country", t4."Sr |
This file contains hidden or 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: apps/v1 | |
kind: Deployment | |
metadata: | |
name: redis-master | |
spec: | |
selector: | |
matchLabels: | |
app: redis | |
role: master | |
tier: backend |
This file contains hidden or 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
spring: | |
application: | |
name: customer-service | |
sleuth: | |
baggage: | |
remote-fields: principal | |
log: | |
slf4j: | |
whitelisted-mdc-keys: | |
- principal |
NewerOlder