Skip to content

Instantly share code, notes, and snippets.

View bruno-brant's full-sized avatar
🏠
Working from home

Bruno Brant bruno-brant

🏠
Working from home
View GitHub Profile
@bruno-brant
bruno-brant / push_docker_images_to_openshift.md
Last active September 23, 2025 11:56
How to push docker images to openshift internal registry and create application from it

How to push docker images to openshift internal registry and create application from it

Assuming you have the OCP (openshift container platform) cluster ready and the user has image push permissions on a namespace (ex:- dev)

TL;DR

  • Grab the Cluster IP Address of internal docker registry
  • tag the local image to internal docker registry
  • grab the auth token and login to inter docker registry
> typeof Greeter
'function'
> greeter = new Greeter();
Greeter {}
> typeof greeter
'object'
@bruno-brant
bruno-brant / es6-classes-arent-types--class-greeter
Created April 12, 2017 17:09
ES6 Classes Aren't Type Definitions
class Greeter {
sayHello(name) {
return "Hello, " + name;
}
}