Ferro's Gitbook
  • README
  • DevOps
    • Grafana_Cloud
  • OpenWrt
    • DHCP_DNS
    • GLiNet
    • boot
    • captive_portal
    • luci
    • mwan3
    • radius
    • theme
    • wireless
  • apps
    • web
  • BSD
    • Mac
  • Cloud
    • aws
    • azure
    • cf
    • gcp
    • github
    • ibm_bluemix
    • Pricing
  • container
    • docker
    • Kubernetes
    • podman
  • db
    • InfluxDB
    • loki
    • MySQL & MariaDB
    • Oracle
    • PostgreSQL
  • dev
    • AHK
    • BI
    • LBS
    • ML
    • android
    • editor
    • flutter_web
    • git
    • go
    • HTML5/BS
    • j2ee
    • js
    • js_grid
    • js_vue
    • jupyter
    • ocaml
    • powershell
    • py
    • py_GUI
    • Django
    • shell
    • snippets
    • uni
    • vba
    • wechat.zh
    • wechat_mp.zh
  • elec
    • 3D Printing
    • AC
    • MOSFET
    • battery
    • boost
    • bulk
    • metal
    • simulator
  • hw
    • GPU
    • PCI
    • arduino
    • Bluetooth
    • ent
    • Pinout
    • x86_AMD
    • x86_intel
  • linux
    • Test System
    • X
    • arch
    • fs
    • kernel
    • Memory
    • nw
    • Linux Services
    • Systemd
    • text
  • ms
    • vscode
    • windows
    • wsl
  • multimedia
    • Blender
    • audio
    • blender
    • graphics
    • home
  • nw
    • L3
    • L3_IPv6
    • SDN
    • VPN
    • dns
    • hw
    • Low Level
    • mikrotik
    • mwan
    • Openflow
    • OVS
    • pfsense
    • ppp
    • proxy
    • tsocks
    • pxe
    • Security
    • TCP
  • phone
    • Mi
    • android
  • Storage(SW)
  • vt
    • Intel GVT-g
    • PVE
    • QEMU
    • VDI
    • hyper-v
    • kube
    • libvirt
    • OpenStack
  • Web
    • IBM_MQ
    • IBM_Websphere
    • SSL
    • Apache/IBM_IHS
    • blockchain
    • caddy
    • j2ee
    • nginx
    • static_site
Powered by GitBook
On this page
  • cli
  • Container
  • external services

Was this helpful?

Edit on Git
  1. Cloud

ibm_bluemix

PreviousgithubNextPricing

Last updated 2 years ago

Was this helpful?

cli

curl -fsSL https://clis.ng.bluemix.net/install/linux | sh

docker run --name bluemix \
    -d --restart unless-stopped \
    --privileged --net host \
    reachlin/bluemix
docker exec -it bluemix bash

https://console.bluemix.net/containers-kubernetes/home/clusters

bx plugin list
bx plugin install container-service -r Bluemix
bx plugin update container-service -r Bluemix

bx login -a https://api.eu-de.bluemix.net -sso

bx cs region
bx cs region-set eu-de

bx cs clusters
bx cs cluster-config mycluster

bx cs workers mycluster # check public IP
bx cs worker-update mycluster <node_id>

BLUEMIX_TRACE=path/to/trace.log         # Append API request diagnostics to a log file
BLUEMIX_API_KEY=api_key_value           # API key to use during login

Container

https://dev-console.stage1.bluemix.net/docs/containers/cs_network_planning.html

NodePort service (free and standard clusters)
LoadBalancer service (standard clusters only)
Ingress (standard clusters only)
bx cs cluster-get mycluster # Master URL

external services

https://console.bluemix.net/docs/containers/cs_integrations.html#adding_cluster

bx service list

name                    service                  plan   bound apps   last operation
Monitoring-tz           Monitoring               lite                create succeeded
Visual Recognition-8p   watson_vision_combined   free                create succeeded

k8s related
cli
Container
external services