This file contains 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
// Assumptions made: 1. Every article document has a category field | |
const articlesCollection = [ | |
{ | |
id: '1', | |
article: | |
'Lorem ipsum dolor sit amet consectetur, adipisicing elit. Facili laborum tenetur tempora', | |
topic: 'Education', | |
}, | |
{ |
This file contains 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 #Depl for managing pods | |
metadata: | |
name: auth-depl | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: # Manage pods with this labels | |
app: auth | |
template: #Teplate for our pod |