<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Influxdb_version_2_getting_started</id>
	<title>Influxdb version 2 getting started - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://tech.uvoo.io/index.php?action=history&amp;feed=atom&amp;title=Influxdb_version_2_getting_started"/>
	<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Influxdb_version_2_getting_started&amp;action=history"/>
	<updated>2026-06-01T17:05:27Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.35.2</generator>
	<entry>
		<id>https://tech.uvoo.io/index.php?title=Influxdb_version_2_getting_started&amp;diff=3132&amp;oldid=prev</id>
		<title>Busk: Created page with &quot; Something like this ``` helm repo add influxdata https://helm.influxdata.com/ helm search repo influxdata helm show values influxdata/influxdb2 &gt; values.yaml edit values kube...&quot;</title>
		<link rel="alternate" type="text/html" href="https://tech.uvoo.io/index.php?title=Influxdb_version_2_getting_started&amp;diff=3132&amp;oldid=prev"/>
		<updated>2022-06-04T20:35:01Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot; Something like this ``` helm repo add influxdata https://helm.influxdata.com/ helm search repo influxdata helm show values influxdata/influxdb2 &amp;gt; values.yaml edit values kube...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&lt;br /&gt;
Something like this&lt;br /&gt;
```&lt;br /&gt;
helm repo add influxdata https://helm.influxdata.com/&lt;br /&gt;
helm search repo influxdata&lt;br /&gt;
helm show values influxdata/influxdb2 &amp;gt; values.yaml&lt;br /&gt;
edit values&lt;br /&gt;
kubectl create namespace influxdb&lt;br /&gt;
helm upgrade --install release1 influxdata/influxdb -f helm/influxdb/values.yaml --namespace influxdb&lt;br /&gt;
helm -n influxdb uninstall v1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
v1&lt;br /&gt;
helm upgrade --install version1 influxdata/influxdb -f helm/influxdb/v1/values.yaml --namespace influxdb&lt;br /&gt;
helm upgrade version1 influxdata/influxdb -f helm/influxdb/v1/values.yaml --namespace influxdb&lt;br /&gt;
helm -n influxdb uninstall version1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
influx user create -n foo -p XXX -o foo -token XXX&lt;br /&gt;
&lt;br /&gt;
 influx user list -token XXX&lt;br /&gt;
&lt;br /&gt;
influx config set -n $CFG_NAME -u $HOST_URL -t $TOKEN -o $ORG_NAME&lt;br /&gt;
&lt;br /&gt;
influx user create -n foo -o foo -p&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
influx org members add --member 09756efbacf92000 --name insights&lt;br /&gt;
```&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
```&lt;br /&gt;
#!/bin/bash&lt;br /&gt;
set -eu&lt;br /&gt;
member=myuser&lt;br /&gt;
org=loadtest&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
createOrg(){&lt;br /&gt;
influx org create -n $org || true&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
createUser(){&lt;br /&gt;
  member=$1&lt;br /&gt;
  org=$2&lt;br /&gt;
  password=$(tr -dc A-Za-z0-9 &amp;lt;/dev/urandom | head -c 32 ; echo '')&lt;br /&gt;
  influx user create -n $member -o $org  -p &amp;quot;$password&amp;quot; || true&lt;br /&gt;
  echo Member $member has been added to org $org with password $password&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
createConfig(){&lt;br /&gt;
influx config create \&lt;br /&gt;
  -n $org \&lt;br /&gt;
  -u ${INFLUXDB_URL} \&lt;br /&gt;
  -t $INFLUXDB_ADMINUSER_API_TOKEN \&lt;br /&gt;
  -a&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
createToken(){&lt;br /&gt;
token=$(influx auth create \&lt;br /&gt;
  --org $org \&lt;br /&gt;
  --all-access)&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# createToken&lt;br /&gt;
&lt;br /&gt;
createUser loadtest loadtest&lt;br /&gt;
```&lt;/div&gt;</summary>
		<author><name>Busk</name></author>
	</entry>
</feed>