Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
GC Infrastructure code
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
Deployment and Operations
GC Infrastructure code
Merge requests
!18
Resolved: Gonrg 1890 update composer
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolved: Gonrg 1890 update composer
GONRG-1890_update_composer
into
master
Overview
0
Commits
3
Pipelines
4
Changes
4
Merged
Mykola Zamkovyi (EPAM)
requested to merge
GONRG-1890_update_composer
into
master
4 years ago
Overview
0
Commits
3
Pipelines
4
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 2
5885a360
4 years ago
version 1
5d9faed3
4 years ago
master (base)
and
latest version
latest version
945b0564
3 commits,
4 years ago
version 2
5885a360
2 commits,
4 years ago
version 1
5d9faed3
1 commit,
4 years ago
4 files
+
111
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
create-gke/README.md
0 → 100644
+
37
−
0
Options
#### Policy Service infrastructure script:
This is optional feature for 3-thd party service
Script create GKE One Node Cluster for Policy Service
To run this script need to have service account key and define project (variable $GCLOUD_PROJECT) where are will be roll-out GKE cluster
```
shell script
./create-gke.sh
```
#### What script "create-gke.sh" do:
Create GKE cluster
```
shell script
gcloud beta container clusters create $GCLOUD_PROJECT-gke-deployments \
--zone=us-central1-c \
--addons=Istio --istio-config=auth=MTLS_STRICT \
--cluster-version=1.17.15-gke.800 \
--machine-type=n1-standard-2 \
--num-nodes=1
```
Connect to the cluster using command
```
shell script
gcloud container clusters get-credentials $GCLOUD_PROJECT-gke-deployments --zone us-central1-c --project $GCLOUD_PROJECT
```
Create namespace "osdu"
```
shell script
kubectl create namespace osdu
```
Label namespace "osdu"
```
shell script
kubectl label namespace osdu istio-injection=enabled
```
Now you can begin deploying Policy Service
Loading