{"id":16709625,"url":"https://github.com/mrlesmithjr/ansible-couchbase","last_synced_at":"2026-04-12T19:45:24.023Z","repository":{"id":142637092,"uuid":"51463262","full_name":"mrlesmithjr/ansible-couchbase","owner":"mrlesmithjr","description":null,"archived":false,"fork":false,"pushed_at":"2017-02-11T14:22:51.000Z","size":18,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-21T17:48:15.454Z","etag":null,"topics":["ansible","ansible-role","couchbase","debian","ubuntu"],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrlesmithjr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-10T18:47:23.000Z","updated_at":"2016-02-10T18:47:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"35478425-b8d6-483a-929e-8700061183f7","html_url":"https://github.com/mrlesmithjr/ansible-couchbase","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-couchbase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-couchbase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-couchbase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-couchbase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrlesmithjr","download_url":"https://codeload.github.com/mrlesmithjr/ansible-couchbase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243672369,"owners_count":20328762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-role","couchbase","debian","ubuntu"],"created_at":"2024-10-12T20:05:25.736Z","updated_at":"2026-04-12T19:45:24.015Z","avatar_url":"https://github.com/mrlesmithjr.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003e [!CAUTION]\n\u003e **This project is archived and no longer maintained.**\n\u003e Archived: 2026-03-26\n\u003e Reason: Low community usage; no longer maintained\n\nRole Name\n=========\n\nAn [Ansible] role to install [Couchbase] DB\n\nRequirements\n------------\n\nDefine Ansible host inventory as example below in order to configure cluster.\n```\n[couchbase-master]\ncouchbase01 ansible_ssh_host=192.168.202.201\n\n[couchbase-servers]\ncouchbase02 ansible_ssh_host=192.168.202.202\ncouchbase03 ansible_ssh_host=192.168.202.203\n```\n\nVagrant\n-------\nSpin up Environment under Vagrant to test. This environment has 3 nodes (1-master and 2-members)\n```\nvagrant up\n```\n\nUsage\n-----\n\n###### Non-Vagrant\nLogin to WebUI using defined owncloud_admin_user and owncloud_admin_pass vars (http://iporhostname:{{ couchbase_rest_http_port }})\n\n###### Vagrant\nLogin to WebUI using defined owncloud_admin_user and owncloud_admin_pass vars (http://127.0.0.1:{{ couchbase_rest_http_port }})\n\nRole Variables\n--------------\n\n```\n---\n# defaults file for ansible-couchbase\ncouchbase_admin_pass: 'P@55w0rd'\ncouchbase_admin_user: 'admin'\ncouchbase_buckets:\n  - name: 'test01'\n    ram_size: '256'\n    state: 'absent'\n  - name: 'test-01'\n    ram_size: '256'\n    state: 'present'\n  - name: 'test-02'\n    ram_size: '256'\n    state: 'present'\ncouchbase_cli: '/opt/couchbase/bin/couchbase-cli'\ncouchbase_cluster_ram_multiplier: 0.5\ncouchbase_cluster_ram_quota: '{{ (ansible_memtotal_mb | int * couchbase_cluster_ram_multiplier) | round | int }}'\ncouchbase_config_cluster: false  #defines if couchbase cluster should be initialized\ncouchbase_debian_package: 'couchbase-server-community_{{ couchbase_version }}-{{ ansible_distribution|lower }}{{ ansible_distribution_version }}_amd64.deb'\ncouchbase_debian_package_dl: 'http://packages.couchbase.com/releases/{{ couchbase_version }}'\ncouchbase_manage_buckets: false  #defines if buckets should be managed\ncouchbase_rest_http_port: '8091'\ncouchbase_version: '4.5.0'\n```\n\nDependencies\n------------\n\nNone\n\nExample Playbook\n----------------\n\n#### GitHub\n````\n---\n- name: provisions Couchbase\n  hosts: all\n  become: true\n  vars:\n    - couchbase_config_cluster: true\n  roles:\n    - role: ansible-couchbase\n  tasks:\n````\n#### Galaxy\n````\n---\n- name: provisions Couchbase\n  hosts: all\n  become: true\n  vars:\n    - couchbase_config_cluster: true\n  roles:\n    - role: mrlesmithjr.couchbase\n  tasks:\n````\n\nLicense\n-------\n\nBSD\n\nAuthor Information\n------------------\n\nLarry Smith Jr.\n- @mrlesmithjr\n- http://everythingshouldbevirtual.com\n- mrlesmithjr [at] gmail.com\n\n[Ansible]: \u003chttps://www.ansible.com\u003e\n[Couchbase]: \u003chttp://www.couchbase.com/\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrlesmithjr%2Fansible-couchbase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrlesmithjr%2Fansible-couchbase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrlesmithjr%2Fansible-couchbase/lists"}