test-account-0
test-account-0
Also You can embed values in application: ``` apiVersion: argoproj.io/v1alpha1 kind: Application metadata: name: fluent-bit-stable namespace: ops spec: project: default source: repoURL: https://kubernetes-charts.storage.googleapis.com chart: fluent-bit targetRevision: 2.8.12 helm: values: |...
@Romiko I might not understand something. What is new in Your approach?
> In our case we just ended up with a mono repo containing all our charts + values. But if you have multiple clusters/environments you need to copy the same...
About asyncomplete - I had to add this - https://github.com/prabirshrestha/asyncomplete.vim#preview-window in order to see help in popups. ``` set completeopt=menuone,noinsert,noselect,popup let g:asyncomplete_auto_completeopt = 0 ```
Because I want to monitor metrics from pcp with a nagios script. These are not docker containers but kind of "normal machines" (one can ssh to them, install stuff and...
Ok, maybe I'm just missing something. Let's look at a simle script test.py: ``` #!/usr/bin/env python import math def calculate_something(lst): for element in lst: math.sqrt(element) calculate_something([x for x in xrange(1,10000000)])...