Kubernetes Linux

Kubernetes Commands for Resource Generation

In Kubernetes, commands can be divided into two categories depending on how commands generate resources. Both categories are used depending on resource generation requirements. 1. Declarative Approach Declarative approach is used when a definition file needs to be declared and Kubernetes generates in the cluster using that file. Two steps follow to accomplish in declarative […]

Kubernetes Commands for Resource Generation Read Post »

Odoo Command Line Interface
Odoo

Create new Module in Odoo using Scaffold

Introduction Odoo follows modularized architecture when developing new features or inheriting some existing features. Two files are necessary to install every odoo module. Those files are To create a module structure, we need to follow the following command module_name: Name of the moudle which implements new features or inherit existing features folder_path: Directory of the

Create new Module in Odoo using Scaffold Read Post »

Postgres

Install PostgreSQL 10 in Linux

1. First, we’ll obtain the authentication keys needed to validate packages from the PostgreSQL repo. $ wget –quiet -O – https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add – 2. As a best practice, we will update our server before installing PostgreSQL. $ sudo sh -c ‘echo “deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -sc)-pgdg main” > /etc/apt/sources.list.d/PostgreSQL.list’ 3. After the update

,

Install PostgreSQL 10 in Linux Read Post »

Scroll to Top